ホーム › UI.Accessibility › RowOrColumnMajor
RowOrColumnMajor
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| RowOrColumnMajor_RowMajor | 0 | 0x0 | テーブル内のデータは行ごとに読み取ります。 |
| RowOrColumnMajor_ColumnMajor | 1 | 0x1 | テーブル内のデータは列ごとに読み取ります。 |
| RowOrColumnMajor_Indeterminate | 2 | 0x2 | データを提示する最適な方法は不定です。 |
公式ドキュメント
テーブル内のデータを主に行単位で読み取るか列単位で読み取るかを指定する値が含まれます。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum RowOrColumnMajor : int {
RowOrColumnMajor_RowMajor = 0,
RowOrColumnMajor_ColumnMajor = 1,
RowOrColumnMajor_Indeterminate = 2
} RowOrColumnMajor;public enum RowOrColumnMajor : int
{
RowOrColumnMajor_RowMajor = 0,
RowOrColumnMajor_ColumnMajor = 1,
RowOrColumnMajor_Indeterminate = 2,
}Public Enum RowOrColumnMajor As Integer
RowOrColumnMajor_RowMajor = 0
RowOrColumnMajor_ColumnMajor = 1
RowOrColumnMajor_Indeterminate = 2
End Enumimport enum
class RowOrColumnMajor(enum.IntEnum):
RowOrColumnMajor_RowMajor = 0
RowOrColumnMajor_ColumnMajor = 1
RowOrColumnMajor_Indeterminate = 2// RowOrColumnMajor
pub const RowOrColumnMajor_RowMajor: i32 = 0;
pub const RowOrColumnMajor_ColumnMajor: i32 = 1;
pub const RowOrColumnMajor_Indeterminate: i32 = 2;// RowOrColumnMajor
const (
RowOrColumnMajor_RowMajor int32 = 0
RowOrColumnMajor_ColumnMajor int32 = 1
RowOrColumnMajor_Indeterminate int32 = 2
)const
RowOrColumnMajor_RowMajor = 0;
RowOrColumnMajor_ColumnMajor = 1;
RowOrColumnMajor_Indeterminate = 2;// RowOrColumnMajor
pub const RowOrColumnMajor_RowMajor: i32 = 0;
pub const RowOrColumnMajor_ColumnMajor: i32 = 1;
pub const RowOrColumnMajor_Indeterminate: i32 = 2;const
RowOrColumnMajor_RowMajor* = 0
RowOrColumnMajor_ColumnMajor* = 1
RowOrColumnMajor_Indeterminate* = 2enum RowOrColumnMajor : int {
RowOrColumnMajor_RowMajor = 0,
RowOrColumnMajor_ColumnMajor = 1,
RowOrColumnMajor_Indeterminate = 2,
}#define global RowOrColumnMajor_RowMajor 0x0
#define global RowOrColumnMajor_ColumnMajor 0x1
#define global RowOrColumnMajor_Indeterminate 0x2