ホーム › System.Mmc › _ColumnSortOrder
_ColumnSortOrder
列挙型メンバー 2
| 名前 | 10進 | 16進 |
|---|---|---|
| SortOrder_Ascending | 0 | 0x0 |
| SortOrder_Descending | 1 | 0x1 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum _ColumnSortOrder : int {
SortOrder_Ascending = 0,
SortOrder_Descending = 1
} _ColumnSortOrder;public enum _ColumnSortOrder : int
{
SortOrder_Ascending = 0,
SortOrder_Descending = 1,
}Public Enum _ColumnSortOrder As Integer
SortOrder_Ascending = 0
SortOrder_Descending = 1
End Enumimport enum
class _ColumnSortOrder(enum.IntEnum):
SortOrder_Ascending = 0
SortOrder_Descending = 1// _ColumnSortOrder
pub const SortOrder_Ascending: i32 = 0;
pub const SortOrder_Descending: i32 = 1;// _ColumnSortOrder
const (
SortOrder_Ascending int32 = 0
SortOrder_Descending int32 = 1
)const
SortOrder_Ascending = 0;
SortOrder_Descending = 1;// _ColumnSortOrder
pub const SortOrder_Ascending: i32 = 0;
pub const SortOrder_Descending: i32 = 1;const
SortOrder_Ascending* = 0
SortOrder_Descending* = 1enum _ColumnSortOrder : int {
SortOrder_Ascending = 0,
SortOrder_Descending = 1,
}#define global SortOrder_Ascending 0x0
#define global SortOrder_Descending 0x1