Win32 API 日本語リファレンス
ホームGlobalization › UBreakIteratorType

UBreakIteratorType

列挙型
基底型i4

メンバー 4

名前10進16進
UBRK_CHARACTER00x0
UBRK_WORD10x1
UBRK_LINE20x2
UBRK_SENTENCE30x3

各言語での定義

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

typedef enum UBreakIteratorType : int {
    UBRK_CHARACTER = 0,
    UBRK_WORD = 1,
    UBRK_LINE = 2,
    UBRK_SENTENCE = 3
} UBreakIteratorType;
public enum UBreakIteratorType : int
{
    UBRK_CHARACTER = 0,
    UBRK_WORD = 1,
    UBRK_LINE = 2,
    UBRK_SENTENCE = 3,
}
Public Enum UBreakIteratorType As Integer
    UBRK_CHARACTER = 0
    UBRK_WORD = 1
    UBRK_LINE = 2
    UBRK_SENTENCE = 3
End Enum
import enum

class UBreakIteratorType(enum.IntEnum):
    UBRK_CHARACTER = 0
    UBRK_WORD = 1
    UBRK_LINE = 2
    UBRK_SENTENCE = 3
// UBreakIteratorType
pub const UBRK_CHARACTER: i32 = 0;
pub const UBRK_WORD: i32 = 1;
pub const UBRK_LINE: i32 = 2;
pub const UBRK_SENTENCE: i32 = 3;
// UBreakIteratorType
const (
	UBRK_CHARACTER int32 = 0
	UBRK_WORD int32 = 1
	UBRK_LINE int32 = 2
	UBRK_SENTENCE int32 = 3
)
const
  UBRK_CHARACTER = 0;
  UBRK_WORD = 1;
  UBRK_LINE = 2;
  UBRK_SENTENCE = 3;
// UBreakIteratorType
pub const UBRK_CHARACTER: i32 = 0;
pub const UBRK_WORD: i32 = 1;
pub const UBRK_LINE: i32 = 2;
pub const UBRK_SENTENCE: i32 = 3;
const
  UBRK_CHARACTER* = 0
  UBRK_WORD* = 1
  UBRK_LINE* = 2
  UBRK_SENTENCE* = 3
enum UBreakIteratorType : int {
    UBRK_CHARACTER = 0,
    UBRK_WORD = 1,
    UBRK_LINE = 2,
    UBRK_SENTENCE = 3,
}
#define global UBRK_CHARACTER 0x0
#define global UBRK_WORD      0x1
#define global UBRK_LINE      0x2
#define global UBRK_SENTENCE  0x3