Win32 API 日本語リファレンス
ホームSystem.Mmc › _ColumnSortOrder

_ColumnSortOrder

列挙型
基底型i4

メンバー 2

名前10進16進
SortOrder_Ascending00x0
SortOrder_Descending10x1

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 1
enum _ColumnSortOrder : int {
    SortOrder_Ascending = 0,
    SortOrder_Descending = 1,
}
#define global SortOrder_Ascending  0x0
#define global SortOrder_Descending 0x1