ホーム › Media.Speech › SpeechVoiceEvents
SpeechVoiceEvents
列挙型メンバー 11
| 名前 | 10進 | 16進 |
|---|---|---|
| SVEStartInputStream | 2 | 0x2 |
| SVEEndInputStream | 4 | 0x4 |
| SVEVoiceChange | 8 | 0x8 |
| SVEBookmark | 16 | 0x10 |
| SVEWordBoundary | 32 | 0x20 |
| SVEPhoneme | 64 | 0x40 |
| SVESentenceBoundary | 128 | 0x80 |
| SVEViseme | 256 | 0x100 |
| SVEAudioLevel | 512 | 0x200 |
| SVEPrivate | 32768 | 0x8000 |
| SVEAllEvents | 33790 | 0x83FE |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum SpeechVoiceEvents : int {
SVEStartInputStream = 2,
SVEEndInputStream = 4,
SVEVoiceChange = 8,
SVEBookmark = 16,
SVEWordBoundary = 32,
SVEPhoneme = 64,
SVESentenceBoundary = 128,
SVEViseme = 256,
SVEAudioLevel = 512,
SVEPrivate = 32768,
SVEAllEvents = 33790
} SpeechVoiceEvents;public enum SpeechVoiceEvents : int
{
SVEStartInputStream = 2,
SVEEndInputStream = 4,
SVEVoiceChange = 8,
SVEBookmark = 16,
SVEWordBoundary = 32,
SVEPhoneme = 64,
SVESentenceBoundary = 128,
SVEViseme = 256,
SVEAudioLevel = 512,
SVEPrivate = 32768,
SVEAllEvents = 33790,
}Public Enum SpeechVoiceEvents As Integer
SVEStartInputStream = 2
SVEEndInputStream = 4
SVEVoiceChange = 8
SVEBookmark = 16
SVEWordBoundary = 32
SVEPhoneme = 64
SVESentenceBoundary = 128
SVEViseme = 256
SVEAudioLevel = 512
SVEPrivate = 32768
SVEAllEvents = 33790
End Enumimport enum
class SpeechVoiceEvents(enum.IntEnum):
SVEStartInputStream = 2
SVEEndInputStream = 4
SVEVoiceChange = 8
SVEBookmark = 16
SVEWordBoundary = 32
SVEPhoneme = 64
SVESentenceBoundary = 128
SVEViseme = 256
SVEAudioLevel = 512
SVEPrivate = 32768
SVEAllEvents = 33790// SpeechVoiceEvents
pub const SVEStartInputStream: i32 = 2;
pub const SVEEndInputStream: i32 = 4;
pub const SVEVoiceChange: i32 = 8;
pub const SVEBookmark: i32 = 16;
pub const SVEWordBoundary: i32 = 32;
pub const SVEPhoneme: i32 = 64;
pub const SVESentenceBoundary: i32 = 128;
pub const SVEViseme: i32 = 256;
pub const SVEAudioLevel: i32 = 512;
pub const SVEPrivate: i32 = 32768;
pub const SVEAllEvents: i32 = 33790;// SpeechVoiceEvents
const (
SVEStartInputStream int32 = 2
SVEEndInputStream int32 = 4
SVEVoiceChange int32 = 8
SVEBookmark int32 = 16
SVEWordBoundary int32 = 32
SVEPhoneme int32 = 64
SVESentenceBoundary int32 = 128
SVEViseme int32 = 256
SVEAudioLevel int32 = 512
SVEPrivate int32 = 32768
SVEAllEvents int32 = 33790
)const
SVEStartInputStream = 2;
SVEEndInputStream = 4;
SVEVoiceChange = 8;
SVEBookmark = 16;
SVEWordBoundary = 32;
SVEPhoneme = 64;
SVESentenceBoundary = 128;
SVEViseme = 256;
SVEAudioLevel = 512;
SVEPrivate = 32768;
SVEAllEvents = 33790;// SpeechVoiceEvents
pub const SVEStartInputStream: i32 = 2;
pub const SVEEndInputStream: i32 = 4;
pub const SVEVoiceChange: i32 = 8;
pub const SVEBookmark: i32 = 16;
pub const SVEWordBoundary: i32 = 32;
pub const SVEPhoneme: i32 = 64;
pub const SVESentenceBoundary: i32 = 128;
pub const SVEViseme: i32 = 256;
pub const SVEAudioLevel: i32 = 512;
pub const SVEPrivate: i32 = 32768;
pub const SVEAllEvents: i32 = 33790;const
SVEStartInputStream* = 2
SVEEndInputStream* = 4
SVEVoiceChange* = 8
SVEBookmark* = 16
SVEWordBoundary* = 32
SVEPhoneme* = 64
SVESentenceBoundary* = 128
SVEViseme* = 256
SVEAudioLevel* = 512
SVEPrivate* = 32768
SVEAllEvents* = 33790enum SpeechVoiceEvents : int {
SVEStartInputStream = 2,
SVEEndInputStream = 4,
SVEVoiceChange = 8,
SVEBookmark = 16,
SVEWordBoundary = 32,
SVEPhoneme = 64,
SVESentenceBoundary = 128,
SVEViseme = 256,
SVEAudioLevel = 512,
SVEPrivate = 32768,
SVEAllEvents = 33790,
}#define global SVEStartInputStream 0x2
#define global SVEEndInputStream 0x4
#define global SVEVoiceChange 0x8
#define global SVEBookmark 0x10
#define global SVEWordBoundary 0x20
#define global SVEPhoneme 0x40
#define global SVESentenceBoundary 0x80
#define global SVEViseme 0x100
#define global SVEAudioLevel 0x200
#define global SVEPrivate 0x8000
#define global SVEAllEvents 0x83FE