SrgsItem Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje nowe wystąpienie klasy SrgsItem.
Przeciążenia
SrgsItem() |
Inicjuje nowe wystąpienie klasy SrgsItem. |
SrgsItem(Int32) |
Inicjuje SrgsItem nowe wystąpienie klasy i określa, ile razy jej zawartość musi być wypowiadana. |
SrgsItem(SrgsElement[]) |
Inicjuje SrgsItem nowe wystąpienie klasy i określa tablicę SrgsElement obiektów do dodania do tego wystąpienia. |
SrgsItem(String) |
Inicjuje SrgsItem nowe wystąpienie klasy i określa jego zawartość tekstową. |
SrgsItem(Int32, Int32) |
Inicjuje SrgsItem nowe wystąpienie klasy i określa minimalną i maksymalną liczbę powtórzeń. |
SrgsItem(Int32, Int32, SrgsElement[]) |
Inicjuje SrgsItem nowe wystąpienie klasy, określa tablicę SrgsElement obiektów do dodania do tego wystąpienia oraz ustawia minimalną i maksymalną liczbę powtórzeń. |
SrgsItem(Int32, Int32, String) |
Inicjuje SrgsItem nowe wystąpienie klasy, określa tekst skojarzony z elementem i określa minimalną i maksymalną liczbę powtórzeń. |
Uwagi
Ten przeciążony konstruktor do SrgsItem inicjowania obiektu z domyślną repeatCount
właściwością 0.
SrgsItem()
Inicjuje nowe wystąpienie klasy SrgsItem.
public:
SrgsItem();
public SrgsItem ();
Public Sub New ()
Dotyczy
SrgsItem(Int32)
Inicjuje SrgsItem nowe wystąpienie klasy i określa, ile razy jej zawartość musi być wypowiadana.
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)
Parametry
- repeatCount
- Int32
Liczba razy, ile razy element musi być wypowiadany.
Wyjątki
repeatCount
jest ujemna lub jest większa niż 255.
Uwagi
Ten konstruktor ustawia MaxRepeat i MinRepeat właściwości nowego SrgsItem elementu na wartość w repeatCount
pliku .
Dotyczy
SrgsItem(SrgsElement[])
Inicjuje SrgsItem nowe wystąpienie klasy i określa tablicę SrgsElement obiektów do dodania do tego wystąpienia.
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())
Parametry
- elements
- SrgsElement[]
Tablica obiektów do dodania SrgsItem do wystąpienia.
Wyjątki
elements
to null
.
Każdy element członkowski tablicy elements
to null
.
Dotyczy
SrgsItem(String)
Inicjuje SrgsItem nowe wystąpienie klasy i określa jego zawartość tekstową.
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)
Parametry
- text
- String
Tekst skojarzony z elementem.
Wyjątki
text
to null
.
text
jest pustym ciągiem.
Dotyczy
SrgsItem(Int32, Int32)
Inicjuje SrgsItem nowe wystąpienie klasy i określa minimalną i maksymalną liczbę powtórzeń.
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)
Parametry
- min
- Int32
Minimalna liczba powtórzeń tekstu w elemencie.
- max
- Int32
Maksymalna liczba powtórzeń tekstu w elemencie.
Wyjątki
min
jest ujemna lub większa niż 255.
max
jest ujemna lub większa niż 255.
min
wartość jest większa niż max
.
Dotyczy
SrgsItem(Int32, Int32, SrgsElement[])
Inicjuje SrgsItem nowe wystąpienie klasy, określa tablicę SrgsElement obiektów do dodania do tego wystąpienia oraz ustawia minimalną i maksymalną liczbę powtórzeń.
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())
Parametry
- elements
- SrgsElement[]
Tablica obiektów do dodania SrgsItem do wystąpienia.
Wyjątki
elements
to null
.
Każdy element członkowski tablicy elements
to null
.
Dotyczy
SrgsItem(Int32, Int32, String)
Inicjuje SrgsItem nowe wystąpienie klasy, określa tekst skojarzony z elementem i określa minimalną i maksymalną liczbę powtórzeń.
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)
Parametry
- min
- Int32
Minimalna liczba powtórzeń elementu.
- max
- Int32
Maksymalna liczba powtórzeń elementu.
- text
- String
Tekst skojarzony z elementem.
Wyjątki
min
jest ujemna lub większa niż 255.
max
jest ujemna lub większa niż 255.
min
wartość jest większa niż max
.