Win32 API 日本語リファレンス
ホームUI.TabletPC › BorderStyleConstants

BorderStyleConstants

列挙型
基底型i4

メンバー 2

名前10進16進
rtfNoBorder00x0
rtfFixedSingle10x1

各言語での定義

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

typedef enum BorderStyleConstants : int {
    rtfNoBorder = 0,
    rtfFixedSingle = 1
} BorderStyleConstants;
public enum BorderStyleConstants : int
{
    rtfNoBorder = 0,
    rtfFixedSingle = 1,
}
Public Enum BorderStyleConstants As Integer
    rtfNoBorder = 0
    rtfFixedSingle = 1
End Enum
import enum

class BorderStyleConstants(enum.IntEnum):
    rtfNoBorder = 0
    rtfFixedSingle = 1
// BorderStyleConstants
pub const rtfNoBorder: i32 = 0;
pub const rtfFixedSingle: i32 = 1;
// BorderStyleConstants
const (
	rtfNoBorder int32 = 0
	rtfFixedSingle int32 = 1
)
const
  rtfNoBorder = 0;
  rtfFixedSingle = 1;
// BorderStyleConstants
pub const rtfNoBorder: i32 = 0;
pub const rtfFixedSingle: i32 = 1;
const
  rtfNoBorder* = 0
  rtfFixedSingle* = 1
enum BorderStyleConstants : int {
    rtfNoBorder = 0,
    rtfFixedSingle = 1,
}
#define global rtfNoBorder    0x0
#define global rtfFixedSingle 0x1