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

styleEmptyCells

列挙型
基底型i4

メンバー 4

名前10進16進
styleEmptyCellsNotSet00x0
styleEmptyCellsShow10x1
styleEmptyCellsHide20x2
styleEmptyCells_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleEmptyCells : int {
    styleEmptyCellsNotSet = 0,
    styleEmptyCellsShow = 1,
    styleEmptyCellsHide = 2,
    styleEmptyCells_Max = 2147483647
} styleEmptyCells;
public enum styleEmptyCells : int
{
    styleEmptyCellsNotSet = 0,
    styleEmptyCellsShow = 1,
    styleEmptyCellsHide = 2,
    styleEmptyCells_Max = 2147483647,
}
Public Enum styleEmptyCells As Integer
    styleEmptyCellsNotSet = 0
    styleEmptyCellsShow = 1
    styleEmptyCellsHide = 2
    styleEmptyCells_Max = 2147483647
End Enum
import enum

class styleEmptyCells(enum.IntEnum):
    styleEmptyCellsNotSet = 0
    styleEmptyCellsShow = 1
    styleEmptyCellsHide = 2
    styleEmptyCells_Max = 2147483647
// styleEmptyCells
pub const styleEmptyCellsNotSet: i32 = 0;
pub const styleEmptyCellsShow: i32 = 1;
pub const styleEmptyCellsHide: i32 = 2;
pub const styleEmptyCells_Max: i32 = 2147483647;
// styleEmptyCells
const (
	styleEmptyCellsNotSet int32 = 0
	styleEmptyCellsShow int32 = 1
	styleEmptyCellsHide int32 = 2
	styleEmptyCells_Max int32 = 2147483647
)
const
  styleEmptyCellsNotSet = 0;
  styleEmptyCellsShow = 1;
  styleEmptyCellsHide = 2;
  styleEmptyCells_Max = 2147483647;
// styleEmptyCells
pub const styleEmptyCellsNotSet: i32 = 0;
pub const styleEmptyCellsShow: i32 = 1;
pub const styleEmptyCellsHide: i32 = 2;
pub const styleEmptyCells_Max: i32 = 2147483647;
const
  styleEmptyCellsNotSet* = 0
  styleEmptyCellsShow* = 1
  styleEmptyCellsHide* = 2
  styleEmptyCells_Max* = 2147483647
enum styleEmptyCells : int {
    styleEmptyCellsNotSet = 0,
    styleEmptyCellsShow = 1,
    styleEmptyCellsHide = 2,
    styleEmptyCells_Max = 2147483647,
}
#define global styleEmptyCellsNotSet 0x0
#define global styleEmptyCellsShow   0x1
#define global styleEmptyCellsHide   0x2
#define global styleEmptyCells_Max   0x7FFFFFFF