Win32 API 日本語リファレンス
ホームGraphics.Printing › EXpsFontOptions

EXpsFontOptions

列挙型
基底型i4

メンバー 2

名前10進16進
Font_Normal00x0
Font_Obfusticate10x1

各言語での定義

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

typedef enum EXpsFontOptions : int {
    Font_Normal = 0,
    Font_Obfusticate = 1
} EXpsFontOptions;
public enum EXpsFontOptions : int
{
    Font_Normal = 0,
    Font_Obfusticate = 1,
}
Public Enum EXpsFontOptions As Integer
    Font_Normal = 0
    Font_Obfusticate = 1
End Enum
import enum

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