ホーム › Media.Speech › SpeechVoicePriority
SpeechVoicePriority
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| SVPNormal | 0 | 0x0 |
| SVPAlert | 1 | 0x1 |
| SVPOver | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum SpeechVoicePriority : int {
SVPNormal = 0,
SVPAlert = 1,
SVPOver = 2
} SpeechVoicePriority;public enum SpeechVoicePriority : int
{
SVPNormal = 0,
SVPAlert = 1,
SVPOver = 2,
}Public Enum SpeechVoicePriority As Integer
SVPNormal = 0
SVPAlert = 1
SVPOver = 2
End Enumimport enum
class SpeechVoicePriority(enum.IntEnum):
SVPNormal = 0
SVPAlert = 1
SVPOver = 2// SpeechVoicePriority
pub const SVPNormal: i32 = 0;
pub const SVPAlert: i32 = 1;
pub const SVPOver: i32 = 2;// SpeechVoicePriority
const (
SVPNormal int32 = 0
SVPAlert int32 = 1
SVPOver int32 = 2
)const
SVPNormal = 0;
SVPAlert = 1;
SVPOver = 2;// SpeechVoicePriority
pub const SVPNormal: i32 = 0;
pub const SVPAlert: i32 = 1;
pub const SVPOver: i32 = 2;const
SVPNormal* = 0
SVPAlert* = 1
SVPOver* = 2enum SpeechVoicePriority : int {
SVPNormal = 0,
SVPAlert = 1,
SVPOver = 2,
}#define global SVPNormal 0x0
#define global SVPAlert 0x1
#define global SVPOver 0x2