Win32 API 日本語リファレンス
ホームUI.Shell › AUTOCOMPLETEOPTIONS

AUTOCOMPLETEOPTIONS

列挙型
基底型i4

メンバー 10

名前10進16進
ACO_NONE00x0
ACO_AUTOSUGGEST10x1
ACO_AUTOAPPEND20x2
ACO_SEARCH40x4
ACO_FILTERPREFIXES80x8
ACO_USETAB160x10
ACO_UPDOWNKEYDROPSLIST320x20
ACO_RTLREADING640x40
ACO_WORD_FILTER1280x80
ACO_NOPREFIXFILTERING2560x100

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum AUTOCOMPLETEOPTIONS : int {
    ACO_NONE = 0,
    ACO_AUTOSUGGEST = 1,
    ACO_AUTOAPPEND = 2,
    ACO_SEARCH = 4,
    ACO_FILTERPREFIXES = 8,
    ACO_USETAB = 16,
    ACO_UPDOWNKEYDROPSLIST = 32,
    ACO_RTLREADING = 64,
    ACO_WORD_FILTER = 128,
    ACO_NOPREFIXFILTERING = 256
} AUTOCOMPLETEOPTIONS;
public enum AUTOCOMPLETEOPTIONS : int
{
    ACO_NONE = 0,
    ACO_AUTOSUGGEST = 1,
    ACO_AUTOAPPEND = 2,
    ACO_SEARCH = 4,
    ACO_FILTERPREFIXES = 8,
    ACO_USETAB = 16,
    ACO_UPDOWNKEYDROPSLIST = 32,
    ACO_RTLREADING = 64,
    ACO_WORD_FILTER = 128,
    ACO_NOPREFIXFILTERING = 256,
}
Public Enum AUTOCOMPLETEOPTIONS As Integer
    ACO_NONE = 0
    ACO_AUTOSUGGEST = 1
    ACO_AUTOAPPEND = 2
    ACO_SEARCH = 4
    ACO_FILTERPREFIXES = 8
    ACO_USETAB = 16
    ACO_UPDOWNKEYDROPSLIST = 32
    ACO_RTLREADING = 64
    ACO_WORD_FILTER = 128
    ACO_NOPREFIXFILTERING = 256
End Enum
import enum

class AUTOCOMPLETEOPTIONS(enum.IntEnum):
    ACO_NONE = 0
    ACO_AUTOSUGGEST = 1
    ACO_AUTOAPPEND = 2
    ACO_SEARCH = 4
    ACO_FILTERPREFIXES = 8
    ACO_USETAB = 16
    ACO_UPDOWNKEYDROPSLIST = 32
    ACO_RTLREADING = 64
    ACO_WORD_FILTER = 128
    ACO_NOPREFIXFILTERING = 256
// AUTOCOMPLETEOPTIONS
pub const ACO_NONE: i32 = 0;
pub const ACO_AUTOSUGGEST: i32 = 1;
pub const ACO_AUTOAPPEND: i32 = 2;
pub const ACO_SEARCH: i32 = 4;
pub const ACO_FILTERPREFIXES: i32 = 8;
pub const ACO_USETAB: i32 = 16;
pub const ACO_UPDOWNKEYDROPSLIST: i32 = 32;
pub const ACO_RTLREADING: i32 = 64;
pub const ACO_WORD_FILTER: i32 = 128;
pub const ACO_NOPREFIXFILTERING: i32 = 256;
// AUTOCOMPLETEOPTIONS
const (
	ACO_NONE int32 = 0
	ACO_AUTOSUGGEST int32 = 1
	ACO_AUTOAPPEND int32 = 2
	ACO_SEARCH int32 = 4
	ACO_FILTERPREFIXES int32 = 8
	ACO_USETAB int32 = 16
	ACO_UPDOWNKEYDROPSLIST int32 = 32
	ACO_RTLREADING int32 = 64
	ACO_WORD_FILTER int32 = 128
	ACO_NOPREFIXFILTERING int32 = 256
)
const
  ACO_NONE = 0;
  ACO_AUTOSUGGEST = 1;
  ACO_AUTOAPPEND = 2;
  ACO_SEARCH = 4;
  ACO_FILTERPREFIXES = 8;
  ACO_USETAB = 16;
  ACO_UPDOWNKEYDROPSLIST = 32;
  ACO_RTLREADING = 64;
  ACO_WORD_FILTER = 128;
  ACO_NOPREFIXFILTERING = 256;
// AUTOCOMPLETEOPTIONS
pub const ACO_NONE: i32 = 0;
pub const ACO_AUTOSUGGEST: i32 = 1;
pub const ACO_AUTOAPPEND: i32 = 2;
pub const ACO_SEARCH: i32 = 4;
pub const ACO_FILTERPREFIXES: i32 = 8;
pub const ACO_USETAB: i32 = 16;
pub const ACO_UPDOWNKEYDROPSLIST: i32 = 32;
pub const ACO_RTLREADING: i32 = 64;
pub const ACO_WORD_FILTER: i32 = 128;
pub const ACO_NOPREFIXFILTERING: i32 = 256;
const
  ACO_NONE* = 0
  ACO_AUTOSUGGEST* = 1
  ACO_AUTOAPPEND* = 2
  ACO_SEARCH* = 4
  ACO_FILTERPREFIXES* = 8
  ACO_USETAB* = 16
  ACO_UPDOWNKEYDROPSLIST* = 32
  ACO_RTLREADING* = 64
  ACO_WORD_FILTER* = 128
  ACO_NOPREFIXFILTERING* = 256
enum AUTOCOMPLETEOPTIONS : int {
    ACO_NONE = 0,
    ACO_AUTOSUGGEST = 1,
    ACO_AUTOAPPEND = 2,
    ACO_SEARCH = 4,
    ACO_FILTERPREFIXES = 8,
    ACO_USETAB = 16,
    ACO_UPDOWNKEYDROPSLIST = 32,
    ACO_RTLREADING = 64,
    ACO_WORD_FILTER = 128,
    ACO_NOPREFIXFILTERING = 256,
}
#define global ACO_NONE               0x0
#define global ACO_AUTOSUGGEST        0x1
#define global ACO_AUTOAPPEND         0x2
#define global ACO_SEARCH             0x4
#define global ACO_FILTERPREFIXES     0x8
#define global ACO_USETAB             0x10
#define global ACO_UPDOWNKEYDROPSLIST 0x20
#define global ACO_RTLREADING         0x40
#define global ACO_WORD_FILTER        0x80
#define global ACO_NOPREFIXFILTERING  0x100