Win32 API 日本語リファレンス
ホームWeb.MsHtml › styleGridRow

styleGridRow

列挙型
基底型i4

メンバー 2

名前10進16進
styleGridRowNotSet00x0
styleGridRow_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleGridRow : int {
    styleGridRowNotSet = 0,
    styleGridRow_Max = 2147483647
} styleGridRow;
public enum styleGridRow : int
{
    styleGridRowNotSet = 0,
    styleGridRow_Max = 2147483647,
}
Public Enum styleGridRow As Integer
    styleGridRowNotSet = 0
    styleGridRow_Max = 2147483647
End Enum
import enum

class styleGridRow(enum.IntEnum):
    styleGridRowNotSet = 0
    styleGridRow_Max = 2147483647
// styleGridRow
pub const styleGridRowNotSet: i32 = 0;
pub const styleGridRow_Max: i32 = 2147483647;
// styleGridRow
const (
	styleGridRowNotSet int32 = 0
	styleGridRow_Max int32 = 2147483647
)
const
  styleGridRowNotSet = 0;
  styleGridRow_Max = 2147483647;
// styleGridRow
pub const styleGridRowNotSet: i32 = 0;
pub const styleGridRow_Max: i32 = 2147483647;
const
  styleGridRowNotSet* = 0
  styleGridRow_Max* = 2147483647
enum styleGridRow : int {
    styleGridRowNotSet = 0,
    styleGridRow_Max = 2147483647,
}
#define global styleGridRowNotSet 0x0
#define global styleGridRow_Max   0x7FFFFFFF