Win32 API 日本語リファレンス
ホームMedia.Speech › SpeechRuleAttributes

SpeechRuleAttributes

列挙型
基底型i4

メンバー 7

名前10進16進
SRATopLevel10x1
SRADefaultToActive20x2
SRAExport40x4
SRAImport80x8
SRAInterpreter160x10
SRADynamic320x20
SRARoot640x40

各言語での定義

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

typedef enum SpeechRuleAttributes : int {
    SRATopLevel = 1,
    SRADefaultToActive = 2,
    SRAExport = 4,
    SRAImport = 8,
    SRAInterpreter = 16,
    SRADynamic = 32,
    SRARoot = 64
} SpeechRuleAttributes;
public enum SpeechRuleAttributes : int
{
    SRATopLevel = 1,
    SRADefaultToActive = 2,
    SRAExport = 4,
    SRAImport = 8,
    SRAInterpreter = 16,
    SRADynamic = 32,
    SRARoot = 64,
}
Public Enum SpeechRuleAttributes As Integer
    SRATopLevel = 1
    SRADefaultToActive = 2
    SRAExport = 4
    SRAImport = 8
    SRAInterpreter = 16
    SRADynamic = 32
    SRARoot = 64
End Enum
import enum

class SpeechRuleAttributes(enum.IntEnum):
    SRATopLevel = 1
    SRADefaultToActive = 2
    SRAExport = 4
    SRAImport = 8
    SRAInterpreter = 16
    SRADynamic = 32
    SRARoot = 64
// SpeechRuleAttributes
pub const SRATopLevel: i32 = 1;
pub const SRADefaultToActive: i32 = 2;
pub const SRAExport: i32 = 4;
pub const SRAImport: i32 = 8;
pub const SRAInterpreter: i32 = 16;
pub const SRADynamic: i32 = 32;
pub const SRARoot: i32 = 64;
// SpeechRuleAttributes
const (
	SRATopLevel int32 = 1
	SRADefaultToActive int32 = 2
	SRAExport int32 = 4
	SRAImport int32 = 8
	SRAInterpreter int32 = 16
	SRADynamic int32 = 32
	SRARoot int32 = 64
)
const
  SRATopLevel = 1;
  SRADefaultToActive = 2;
  SRAExport = 4;
  SRAImport = 8;
  SRAInterpreter = 16;
  SRADynamic = 32;
  SRARoot = 64;
// SpeechRuleAttributes
pub const SRATopLevel: i32 = 1;
pub const SRADefaultToActive: i32 = 2;
pub const SRAExport: i32 = 4;
pub const SRAImport: i32 = 8;
pub const SRAInterpreter: i32 = 16;
pub const SRADynamic: i32 = 32;
pub const SRARoot: i32 = 64;
const
  SRATopLevel* = 1
  SRADefaultToActive* = 2
  SRAExport* = 4
  SRAImport* = 8
  SRAInterpreter* = 16
  SRADynamic* = 32
  SRARoot* = 64
enum SpeechRuleAttributes : int {
    SRATopLevel = 1,
    SRADefaultToActive = 2,
    SRAExport = 4,
    SRAImport = 8,
    SRAInterpreter = 16,
    SRADynamic = 32,
    SRARoot = 64,
}
#define global SRATopLevel        0x1
#define global SRADefaultToActive 0x2
#define global SRAExport          0x4
#define global SRAImport          0x8
#define global SRAInterpreter     0x10
#define global SRADynamic         0x20
#define global SRARoot            0x40