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

TreeScope

列挙型
基底型i4

メンバー 7

名前10進16進
TreeScope_None00x0
TreeScope_Element10x1
TreeScope_Children20x2
TreeScope_Descendants40x4
TreeScope_Parent80x8
TreeScope_Ancestors160x10
TreeScope_Subtree70x7

各言語での定義

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

typedef enum TreeScope : int {
    TreeScope_None = 0,
    TreeScope_Element = 1,
    TreeScope_Children = 2,
    TreeScope_Descendants = 4,
    TreeScope_Parent = 8,
    TreeScope_Ancestors = 16,
    TreeScope_Subtree = 7
} TreeScope;
public enum TreeScope : int
{
    TreeScope_None = 0,
    TreeScope_Element = 1,
    TreeScope_Children = 2,
    TreeScope_Descendants = 4,
    TreeScope_Parent = 8,
    TreeScope_Ancestors = 16,
    TreeScope_Subtree = 7,
}
Public Enum TreeScope As Integer
    TreeScope_None = 0
    TreeScope_Element = 1
    TreeScope_Children = 2
    TreeScope_Descendants = 4
    TreeScope_Parent = 8
    TreeScope_Ancestors = 16
    TreeScope_Subtree = 7
End Enum
import enum

class TreeScope(enum.IntEnum):
    TreeScope_None = 0
    TreeScope_Element = 1
    TreeScope_Children = 2
    TreeScope_Descendants = 4
    TreeScope_Parent = 8
    TreeScope_Ancestors = 16
    TreeScope_Subtree = 7
// TreeScope
pub const TreeScope_None: i32 = 0;
pub const TreeScope_Element: i32 = 1;
pub const TreeScope_Children: i32 = 2;
pub const TreeScope_Descendants: i32 = 4;
pub const TreeScope_Parent: i32 = 8;
pub const TreeScope_Ancestors: i32 = 16;
pub const TreeScope_Subtree: i32 = 7;
// TreeScope
const (
	TreeScope_None int32 = 0
	TreeScope_Element int32 = 1
	TreeScope_Children int32 = 2
	TreeScope_Descendants int32 = 4
	TreeScope_Parent int32 = 8
	TreeScope_Ancestors int32 = 16
	TreeScope_Subtree int32 = 7
)
const
  TreeScope_None = 0;
  TreeScope_Element = 1;
  TreeScope_Children = 2;
  TreeScope_Descendants = 4;
  TreeScope_Parent = 8;
  TreeScope_Ancestors = 16;
  TreeScope_Subtree = 7;
// TreeScope
pub const TreeScope_None: i32 = 0;
pub const TreeScope_Element: i32 = 1;
pub const TreeScope_Children: i32 = 2;
pub const TreeScope_Descendants: i32 = 4;
pub const TreeScope_Parent: i32 = 8;
pub const TreeScope_Ancestors: i32 = 16;
pub const TreeScope_Subtree: i32 = 7;
const
  TreeScope_None* = 0
  TreeScope_Element* = 1
  TreeScope_Children* = 2
  TreeScope_Descendants* = 4
  TreeScope_Parent* = 8
  TreeScope_Ancestors* = 16
  TreeScope_Subtree* = 7
enum TreeScope : int {
    TreeScope_None = 0,
    TreeScope_Element = 1,
    TreeScope_Children = 2,
    TreeScope_Descendants = 4,
    TreeScope_Parent = 8,
    TreeScope_Ancestors = 16,
    TreeScope_Subtree = 7,
}
#define global TreeScope_None        0x0
#define global TreeScope_Element     0x1
#define global TreeScope_Children    0x2
#define global TreeScope_Descendants 0x4
#define global TreeScope_Parent      0x8
#define global TreeScope_Ancestors   0x10
#define global TreeScope_Subtree     0x7