ホーム › Media.Speech › SpeechRuleAttributes
SpeechRuleAttributes
列挙型メンバー 7
| 名前 | 10進 | 16進 |
|---|---|---|
| SRATopLevel | 1 | 0x1 |
| SRADefaultToActive | 2 | 0x2 |
| SRAExport | 4 | 0x4 |
| SRAImport | 8 | 0x8 |
| SRAInterpreter | 16 | 0x10 |
| SRADynamic | 32 | 0x20 |
| SRARoot | 64 | 0x40 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 64enum 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