SrgsItem コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
SrgsItem クラスの新しいインスタンスを初期化します。
オーバーロード
SrgsItem() |
SrgsItem クラスの新しいインスタンスを初期化します。 |
SrgsItem(Int32) |
SrgsItem クラスの新しいインスタンスを初期化し、コンテンツを話す必要がある回数を指定します。 |
SrgsItem(SrgsElement[]) |
SrgsItem クラスの新しいインスタンスを初期化し、このインスタンスに追加する SrgsElement オブジェクトの配列を指定します。 |
SrgsItem(String) |
SrgsItem クラスの新しいインスタンスを初期化して、そのテキスト コンテンツを指定します。 |
SrgsItem(Int32, Int32) |
SrgsItem クラスの新しいインスタンスを初期化して、繰り返し回数の最小値と最大値を指定します。 |
SrgsItem(Int32, Int32, SrgsElement[]) |
SrgsItem クラスの新しいインスタンスを初期化し、このインスタンスに追加する SrgsElement オブジェクトの配列を指定して、反復回数の下限と上限を設定します。 |
SrgsItem(Int32, Int32, String) |
SrgsItem クラスの新しいインスタンスを初期化し、項目に関連付けられたテキストを指定して、反復回数の下限と上限を指定します。 |
注釈
このオーバーロードされたコンストラクターは SrgsItem 、既定 repeatCount
のプロパティが 0 のオブジェクトを初期化します。
SrgsItem()
SrgsItem(Int32)
SrgsItem クラスの新しいインスタンスを初期化し、コンテンツを話す必要がある回数を指定します。
public:
SrgsItem(int repeatCount);
public SrgsItem (int repeatCount);
new System.Speech.Recognition.SrgsGrammar.SrgsItem : int -> System.Speech.Recognition.SrgsGrammar.SrgsItem
Public Sub New (repeatCount As Integer)
パラメーター
- repeatCount
- Int32
項目を読み上げる必要がある回数。
例外
repeatCount
は負の値であるか、255 よりも大きい値です。
注釈
このコンストラクターは、new SrgsItem の値を設定MaxRepeatしてMinRepeatプロパティをrepeatCount
設定します。
適用対象
SrgsItem(SrgsElement[])
SrgsItem クラスの新しいインスタンスを初期化し、このインスタンスに追加する SrgsElement オブジェクトの配列を指定します。
public:
SrgsItem(... cli::array <System::Speech::Recognition::SrgsGrammar::SrgsElement ^> ^ elements);
public SrgsItem (params System.Speech.Recognition.SrgsGrammar.SrgsElement[] elements);
new System.Speech.Recognition.SrgsGrammar.SrgsItem : System.Speech.Recognition.SrgsGrammar.SrgsElement[] -> System.Speech.Recognition.SrgsGrammar.SrgsItem
Public Sub New (ParamArray elements As SrgsElement())
パラメーター
- elements
- SrgsElement[]
SrgsItem インスタンスに追加するオブジェクトの配列。
例外
elements
が null
です。
elements
配列のメンバーが null
です。
適用対象
SrgsItem(String)
SrgsItem クラスの新しいインスタンスを初期化して、そのテキスト コンテンツを指定します。
public:
SrgsItem(System::String ^ text);
public SrgsItem (string text);
new System.Speech.Recognition.SrgsGrammar.SrgsItem : string -> System.Speech.Recognition.SrgsGrammar.SrgsItem
Public Sub New (text As String)
パラメーター
- text
- String
項目に関連付けられたテキスト。
例外
text
が null
です。
text
が空の文字列です。
適用対象
SrgsItem(Int32, Int32)
SrgsItem クラスの新しいインスタンスを初期化して、繰り返し回数の最小値と最大値を指定します。
public:
SrgsItem(int min, int max);
public SrgsItem (int min, int max);
new System.Speech.Recognition.SrgsGrammar.SrgsItem : int * int -> System.Speech.Recognition.SrgsGrammar.SrgsItem
Public Sub New (min As Integer, max As Integer)
パラメーター
- min
- Int32
項目内のテキストを繰り返す必要がある最小回数。
- max
- Int32
項目内のテキストを繰り返すことができる最大回数。
例外
min
が max
を超えています。
適用対象
SrgsItem(Int32, Int32, SrgsElement[])
SrgsItem クラスの新しいインスタンスを初期化し、このインスタンスに追加する SrgsElement オブジェクトの配列を指定して、反復回数の下限と上限を設定します。
public:
SrgsItem(int min, int max, ... cli::array <System::Speech::Recognition::SrgsGrammar::SrgsElement ^> ^ elements);
public SrgsItem (int min, int max, params System.Speech.Recognition.SrgsGrammar.SrgsElement[] elements);
new System.Speech.Recognition.SrgsGrammar.SrgsItem : int * int * System.Speech.Recognition.SrgsGrammar.SrgsElement[] -> System.Speech.Recognition.SrgsGrammar.SrgsItem
Public Sub New (min As Integer, max As Integer, ParamArray elements As SrgsElement())
パラメーター
- elements
- SrgsElement[]
SrgsItem インスタンスに追加するオブジェクトの配列。
例外
elements
が null
です。
elements
配列のメンバーが null
です。
適用対象
SrgsItem(Int32, Int32, String)
SrgsItem クラスの新しいインスタンスを初期化し、項目に関連付けられたテキストを指定して、反復回数の下限と上限を指定します。
public:
SrgsItem(int min, int max, System::String ^ text);
public SrgsItem (int min, int max, string text);
new System.Speech.Recognition.SrgsGrammar.SrgsItem : int * int * string -> System.Speech.Recognition.SrgsGrammar.SrgsItem
Public Sub New (min As Integer, max As Integer, text As String)
パラメーター
- min
- Int32
項目を繰り返す必要がある最小回数。
- max
- Int32
項目を繰り返すことができる最大回数。
- text
- String
項目に関連付けられたテキスト。
例外
min
が max
を超えています。