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

styleGridRowSpan

列挙型
基底型i4

メンバー 2

名前10進16進
styleGridRowSpanNotSet00x0
styleGridRowSpan_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleGridRowSpan : int {
    styleGridRowSpanNotSet = 0,
    styleGridRowSpan_Max = 2147483647
} styleGridRowSpan;
public enum styleGridRowSpan : int
{
    styleGridRowSpanNotSet = 0,
    styleGridRowSpan_Max = 2147483647,
}
Public Enum styleGridRowSpan As Integer
    styleGridRowSpanNotSet = 0
    styleGridRowSpan_Max = 2147483647
End Enum
import enum

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