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

UIAutomationType

列挙型フラグ
基底型i4

メンバー 30

名前10進16進
UIAutomationType_Int10x1
UIAutomationType_Bool20x2
UIAutomationType_String30x3
UIAutomationType_Double40x4
UIAutomationType_Point50x5
UIAutomationType_Rect60x6
UIAutomationType_Element70x7
UIAutomationType_Array655360x10000
UIAutomationType_Out1310720x20000
UIAutomationType_IntArray655370x10001
UIAutomationType_BoolArray655380x10002
UIAutomationType_StringArray655390x10003
UIAutomationType_DoubleArray655400x10004
UIAutomationType_PointArray655410x10005
UIAutomationType_RectArray655420x10006
UIAutomationType_ElementArray655430x10007
UIAutomationType_OutInt1310730x20001
UIAutomationType_OutBool1310740x20002
UIAutomationType_OutString1310750x20003
UIAutomationType_OutDouble1310760x20004
UIAutomationType_OutPoint1310770x20005
UIAutomationType_OutRect1310780x20006
UIAutomationType_OutElement1310790x20007
UIAutomationType_OutIntArray1966090x30001
UIAutomationType_OutBoolArray1966100x30002
UIAutomationType_OutStringArray1966110x30003
UIAutomationType_OutDoubleArray1966120x30004
UIAutomationType_OutPointArray1966130x30005
UIAutomationType_OutRectArray1966140x30006
UIAutomationType_OutElementArray1966150x30007

各言語での定義

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

typedef enum UIAutomationType : int {
    UIAutomationType_Int = 1,
    UIAutomationType_Bool = 2,
    UIAutomationType_String = 3,
    UIAutomationType_Double = 4,
    UIAutomationType_Point = 5,
    UIAutomationType_Rect = 6,
    UIAutomationType_Element = 7,
    UIAutomationType_Array = 65536,
    UIAutomationType_Out = 131072,
    UIAutomationType_IntArray = 65537,
    UIAutomationType_BoolArray = 65538,
    UIAutomationType_StringArray = 65539,
    UIAutomationType_DoubleArray = 65540,
    UIAutomationType_PointArray = 65541,
    UIAutomationType_RectArray = 65542,
    UIAutomationType_ElementArray = 65543,
    UIAutomationType_OutInt = 131073,
    UIAutomationType_OutBool = 131074,
    UIAutomationType_OutString = 131075,
    UIAutomationType_OutDouble = 131076,
    UIAutomationType_OutPoint = 131077,
    UIAutomationType_OutRect = 131078,
    UIAutomationType_OutElement = 131079,
    UIAutomationType_OutIntArray = 196609,
    UIAutomationType_OutBoolArray = 196610,
    UIAutomationType_OutStringArray = 196611,
    UIAutomationType_OutDoubleArray = 196612,
    UIAutomationType_OutPointArray = 196613,
    UIAutomationType_OutRectArray = 196614,
    UIAutomationType_OutElementArray = 196615
} UIAutomationType;
[Flags]
public enum UIAutomationType : int
{
    UIAutomationType_Int = 1,
    UIAutomationType_Bool = 2,
    UIAutomationType_String = 3,
    UIAutomationType_Double = 4,
    UIAutomationType_Point = 5,
    UIAutomationType_Rect = 6,
    UIAutomationType_Element = 7,
    UIAutomationType_Array = 65536,
    UIAutomationType_Out = 131072,
    UIAutomationType_IntArray = 65537,
    UIAutomationType_BoolArray = 65538,
    UIAutomationType_StringArray = 65539,
    UIAutomationType_DoubleArray = 65540,
    UIAutomationType_PointArray = 65541,
    UIAutomationType_RectArray = 65542,
    UIAutomationType_ElementArray = 65543,
    UIAutomationType_OutInt = 131073,
    UIAutomationType_OutBool = 131074,
    UIAutomationType_OutString = 131075,
    UIAutomationType_OutDouble = 131076,
    UIAutomationType_OutPoint = 131077,
    UIAutomationType_OutRect = 131078,
    UIAutomationType_OutElement = 131079,
    UIAutomationType_OutIntArray = 196609,
    UIAutomationType_OutBoolArray = 196610,
    UIAutomationType_OutStringArray = 196611,
    UIAutomationType_OutDoubleArray = 196612,
    UIAutomationType_OutPointArray = 196613,
    UIAutomationType_OutRectArray = 196614,
    UIAutomationType_OutElementArray = 196615,
}
<Flags>
Public Enum UIAutomationType As Integer
    UIAutomationType_Int = 1
    UIAutomationType_Bool = 2
    UIAutomationType_String = 3
    UIAutomationType_Double = 4
    UIAutomationType_Point = 5
    UIAutomationType_Rect = 6
    UIAutomationType_Element = 7
    UIAutomationType_Array = 65536
    UIAutomationType_Out = 131072
    UIAutomationType_IntArray = 65537
    UIAutomationType_BoolArray = 65538
    UIAutomationType_StringArray = 65539
    UIAutomationType_DoubleArray = 65540
    UIAutomationType_PointArray = 65541
    UIAutomationType_RectArray = 65542
    UIAutomationType_ElementArray = 65543
    UIAutomationType_OutInt = 131073
    UIAutomationType_OutBool = 131074
    UIAutomationType_OutString = 131075
    UIAutomationType_OutDouble = 131076
    UIAutomationType_OutPoint = 131077
    UIAutomationType_OutRect = 131078
    UIAutomationType_OutElement = 131079
    UIAutomationType_OutIntArray = 196609
    UIAutomationType_OutBoolArray = 196610
    UIAutomationType_OutStringArray = 196611
    UIAutomationType_OutDoubleArray = 196612
    UIAutomationType_OutPointArray = 196613
    UIAutomationType_OutRectArray = 196614
    UIAutomationType_OutElementArray = 196615
End Enum
import enum

class UIAutomationType(enum.IntFlag):
    UIAutomationType_Int = 1
    UIAutomationType_Bool = 2
    UIAutomationType_String = 3
    UIAutomationType_Double = 4
    UIAutomationType_Point = 5
    UIAutomationType_Rect = 6
    UIAutomationType_Element = 7
    UIAutomationType_Array = 65536
    UIAutomationType_Out = 131072
    UIAutomationType_IntArray = 65537
    UIAutomationType_BoolArray = 65538
    UIAutomationType_StringArray = 65539
    UIAutomationType_DoubleArray = 65540
    UIAutomationType_PointArray = 65541
    UIAutomationType_RectArray = 65542
    UIAutomationType_ElementArray = 65543
    UIAutomationType_OutInt = 131073
    UIAutomationType_OutBool = 131074
    UIAutomationType_OutString = 131075
    UIAutomationType_OutDouble = 131076
    UIAutomationType_OutPoint = 131077
    UIAutomationType_OutRect = 131078
    UIAutomationType_OutElement = 131079
    UIAutomationType_OutIntArray = 196609
    UIAutomationType_OutBoolArray = 196610
    UIAutomationType_OutStringArray = 196611
    UIAutomationType_OutDoubleArray = 196612
    UIAutomationType_OutPointArray = 196613
    UIAutomationType_OutRectArray = 196614
    UIAutomationType_OutElementArray = 196615
// UIAutomationType (flags)
pub const UIAutomationType_Int: i32 = 1;
pub const UIAutomationType_Bool: i32 = 2;
pub const UIAutomationType_String: i32 = 3;
pub const UIAutomationType_Double: i32 = 4;
pub const UIAutomationType_Point: i32 = 5;
pub const UIAutomationType_Rect: i32 = 6;
pub const UIAutomationType_Element: i32 = 7;
pub const UIAutomationType_Array: i32 = 65536;
pub const UIAutomationType_Out: i32 = 131072;
pub const UIAutomationType_IntArray: i32 = 65537;
pub const UIAutomationType_BoolArray: i32 = 65538;
pub const UIAutomationType_StringArray: i32 = 65539;
pub const UIAutomationType_DoubleArray: i32 = 65540;
pub const UIAutomationType_PointArray: i32 = 65541;
pub const UIAutomationType_RectArray: i32 = 65542;
pub const UIAutomationType_ElementArray: i32 = 65543;
pub const UIAutomationType_OutInt: i32 = 131073;
pub const UIAutomationType_OutBool: i32 = 131074;
pub const UIAutomationType_OutString: i32 = 131075;
pub const UIAutomationType_OutDouble: i32 = 131076;
pub const UIAutomationType_OutPoint: i32 = 131077;
pub const UIAutomationType_OutRect: i32 = 131078;
pub const UIAutomationType_OutElement: i32 = 131079;
pub const UIAutomationType_OutIntArray: i32 = 196609;
pub const UIAutomationType_OutBoolArray: i32 = 196610;
pub const UIAutomationType_OutStringArray: i32 = 196611;
pub const UIAutomationType_OutDoubleArray: i32 = 196612;
pub const UIAutomationType_OutPointArray: i32 = 196613;
pub const UIAutomationType_OutRectArray: i32 = 196614;
pub const UIAutomationType_OutElementArray: i32 = 196615;
// UIAutomationType
const (
	UIAutomationType_Int int32 = 1
	UIAutomationType_Bool int32 = 2
	UIAutomationType_String int32 = 3
	UIAutomationType_Double int32 = 4
	UIAutomationType_Point int32 = 5
	UIAutomationType_Rect int32 = 6
	UIAutomationType_Element int32 = 7
	UIAutomationType_Array int32 = 65536
	UIAutomationType_Out int32 = 131072
	UIAutomationType_IntArray int32 = 65537
	UIAutomationType_BoolArray int32 = 65538
	UIAutomationType_StringArray int32 = 65539
	UIAutomationType_DoubleArray int32 = 65540
	UIAutomationType_PointArray int32 = 65541
	UIAutomationType_RectArray int32 = 65542
	UIAutomationType_ElementArray int32 = 65543
	UIAutomationType_OutInt int32 = 131073
	UIAutomationType_OutBool int32 = 131074
	UIAutomationType_OutString int32 = 131075
	UIAutomationType_OutDouble int32 = 131076
	UIAutomationType_OutPoint int32 = 131077
	UIAutomationType_OutRect int32 = 131078
	UIAutomationType_OutElement int32 = 131079
	UIAutomationType_OutIntArray int32 = 196609
	UIAutomationType_OutBoolArray int32 = 196610
	UIAutomationType_OutStringArray int32 = 196611
	UIAutomationType_OutDoubleArray int32 = 196612
	UIAutomationType_OutPointArray int32 = 196613
	UIAutomationType_OutRectArray int32 = 196614
	UIAutomationType_OutElementArray int32 = 196615
)
const
  UIAutomationType_Int = 1;
  UIAutomationType_Bool = 2;
  UIAutomationType_String = 3;
  UIAutomationType_Double = 4;
  UIAutomationType_Point = 5;
  UIAutomationType_Rect = 6;
  UIAutomationType_Element = 7;
  UIAutomationType_Array = 65536;
  UIAutomationType_Out = 131072;
  UIAutomationType_IntArray = 65537;
  UIAutomationType_BoolArray = 65538;
  UIAutomationType_StringArray = 65539;
  UIAutomationType_DoubleArray = 65540;
  UIAutomationType_PointArray = 65541;
  UIAutomationType_RectArray = 65542;
  UIAutomationType_ElementArray = 65543;
  UIAutomationType_OutInt = 131073;
  UIAutomationType_OutBool = 131074;
  UIAutomationType_OutString = 131075;
  UIAutomationType_OutDouble = 131076;
  UIAutomationType_OutPoint = 131077;
  UIAutomationType_OutRect = 131078;
  UIAutomationType_OutElement = 131079;
  UIAutomationType_OutIntArray = 196609;
  UIAutomationType_OutBoolArray = 196610;
  UIAutomationType_OutStringArray = 196611;
  UIAutomationType_OutDoubleArray = 196612;
  UIAutomationType_OutPointArray = 196613;
  UIAutomationType_OutRectArray = 196614;
  UIAutomationType_OutElementArray = 196615;
// UIAutomationType
pub const UIAutomationType_Int: i32 = 1;
pub const UIAutomationType_Bool: i32 = 2;
pub const UIAutomationType_String: i32 = 3;
pub const UIAutomationType_Double: i32 = 4;
pub const UIAutomationType_Point: i32 = 5;
pub const UIAutomationType_Rect: i32 = 6;
pub const UIAutomationType_Element: i32 = 7;
pub const UIAutomationType_Array: i32 = 65536;
pub const UIAutomationType_Out: i32 = 131072;
pub const UIAutomationType_IntArray: i32 = 65537;
pub const UIAutomationType_BoolArray: i32 = 65538;
pub const UIAutomationType_StringArray: i32 = 65539;
pub const UIAutomationType_DoubleArray: i32 = 65540;
pub const UIAutomationType_PointArray: i32 = 65541;
pub const UIAutomationType_RectArray: i32 = 65542;
pub const UIAutomationType_ElementArray: i32 = 65543;
pub const UIAutomationType_OutInt: i32 = 131073;
pub const UIAutomationType_OutBool: i32 = 131074;
pub const UIAutomationType_OutString: i32 = 131075;
pub const UIAutomationType_OutDouble: i32 = 131076;
pub const UIAutomationType_OutPoint: i32 = 131077;
pub const UIAutomationType_OutRect: i32 = 131078;
pub const UIAutomationType_OutElement: i32 = 131079;
pub const UIAutomationType_OutIntArray: i32 = 196609;
pub const UIAutomationType_OutBoolArray: i32 = 196610;
pub const UIAutomationType_OutStringArray: i32 = 196611;
pub const UIAutomationType_OutDoubleArray: i32 = 196612;
pub const UIAutomationType_OutPointArray: i32 = 196613;
pub const UIAutomationType_OutRectArray: i32 = 196614;
pub const UIAutomationType_OutElementArray: i32 = 196615;
const
  UIAutomationType_Int* = 1
  UIAutomationType_Bool* = 2
  UIAutomationType_String* = 3
  UIAutomationType_Double* = 4
  UIAutomationType_Point* = 5
  UIAutomationType_Rect* = 6
  UIAutomationType_Element* = 7
  UIAutomationType_Array* = 65536
  UIAutomationType_Out* = 131072
  UIAutomationType_IntArray* = 65537
  UIAutomationType_BoolArray* = 65538
  UIAutomationType_StringArray* = 65539
  UIAutomationType_DoubleArray* = 65540
  UIAutomationType_PointArray* = 65541
  UIAutomationType_RectArray* = 65542
  UIAutomationType_ElementArray* = 65543
  UIAutomationType_OutInt* = 131073
  UIAutomationType_OutBool* = 131074
  UIAutomationType_OutString* = 131075
  UIAutomationType_OutDouble* = 131076
  UIAutomationType_OutPoint* = 131077
  UIAutomationType_OutRect* = 131078
  UIAutomationType_OutElement* = 131079
  UIAutomationType_OutIntArray* = 196609
  UIAutomationType_OutBoolArray* = 196610
  UIAutomationType_OutStringArray* = 196611
  UIAutomationType_OutDoubleArray* = 196612
  UIAutomationType_OutPointArray* = 196613
  UIAutomationType_OutRectArray* = 196614
  UIAutomationType_OutElementArray* = 196615
enum UIAutomationType : int {
    UIAutomationType_Int = 1,
    UIAutomationType_Bool = 2,
    UIAutomationType_String = 3,
    UIAutomationType_Double = 4,
    UIAutomationType_Point = 5,
    UIAutomationType_Rect = 6,
    UIAutomationType_Element = 7,
    UIAutomationType_Array = 65536,
    UIAutomationType_Out = 131072,
    UIAutomationType_IntArray = 65537,
    UIAutomationType_BoolArray = 65538,
    UIAutomationType_StringArray = 65539,
    UIAutomationType_DoubleArray = 65540,
    UIAutomationType_PointArray = 65541,
    UIAutomationType_RectArray = 65542,
    UIAutomationType_ElementArray = 65543,
    UIAutomationType_OutInt = 131073,
    UIAutomationType_OutBool = 131074,
    UIAutomationType_OutString = 131075,
    UIAutomationType_OutDouble = 131076,
    UIAutomationType_OutPoint = 131077,
    UIAutomationType_OutRect = 131078,
    UIAutomationType_OutElement = 131079,
    UIAutomationType_OutIntArray = 196609,
    UIAutomationType_OutBoolArray = 196610,
    UIAutomationType_OutStringArray = 196611,
    UIAutomationType_OutDoubleArray = 196612,
    UIAutomationType_OutPointArray = 196613,
    UIAutomationType_OutRectArray = 196614,
    UIAutomationType_OutElementArray = 196615,
}
#define global UIAutomationType_Int             0x1
#define global UIAutomationType_Bool            0x2
#define global UIAutomationType_String          0x3
#define global UIAutomationType_Double          0x4
#define global UIAutomationType_Point           0x5
#define global UIAutomationType_Rect            0x6
#define global UIAutomationType_Element         0x7
#define global UIAutomationType_Array           0x10000
#define global UIAutomationType_Out             0x20000
#define global UIAutomationType_IntArray        0x10001
#define global UIAutomationType_BoolArray       0x10002
#define global UIAutomationType_StringArray     0x10003
#define global UIAutomationType_DoubleArray     0x10004
#define global UIAutomationType_PointArray      0x10005
#define global UIAutomationType_RectArray       0x10006
#define global UIAutomationType_ElementArray    0x10007
#define global UIAutomationType_OutInt          0x20001
#define global UIAutomationType_OutBool         0x20002
#define global UIAutomationType_OutString       0x20003
#define global UIAutomationType_OutDouble       0x20004
#define global UIAutomationType_OutPoint        0x20005
#define global UIAutomationType_OutRect         0x20006
#define global UIAutomationType_OutElement      0x20007
#define global UIAutomationType_OutIntArray     0x30001
#define global UIAutomationType_OutBoolArray    0x30002
#define global UIAutomationType_OutStringArray  0x30003
#define global UIAutomationType_OutDoubleArray  0x30004
#define global UIAutomationType_OutPointArray   0x30005
#define global UIAutomationType_OutRectArray    0x30006
#define global UIAutomationType_OutElementArray 0x30007
; ※フラグ列挙型。ビットORで組み合わせ可(例: FOO|BAR)。