다음을 통해 공유


SrgsItem 생성자

정의

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 클래스의 새 인스턴스를 초기화합니다.

public:
 SrgsItem();
public SrgsItem ();
Public Sub New ()

적용 대상

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 보다 더 크다.

설명

이 생성자는 새 SrgsItem 값의 설정 MaxRepeatMinRepeat 속성을 에 있습니다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가 음수이거나 255보다 큰 경우

max가 음수이거나 255보다 큰 경우

minmax보다 큰 경우

적용 대상

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())

매개 변수

min
Int32

SrgsItem 개체의 내용을 반복해야 하는 최소 횟수입니다.

max
Int32

SrgsItem 개체의 내용을 반복할 수 있는 최대 횟수입니다.

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가 음수이거나 255보다 큰 경우

max가 음수이거나 255보다 큰 경우

minmax보다 큰 경우

적용 대상