다음을 통해 공유


ValidatorCollection.Item[Int32] 속성

정의

ValidatorCollection 컬렉션의 지정된 인덱스 위치에 있는 유효성 검사 서버 컨트롤을 가져옵니다.

public:
 property System::Web::UI::IValidator ^ default[int] { System::Web::UI::IValidator ^ get(int index); };
public System.Web.UI.IValidator this[int index] { get; }
member this.Item(int) : System.Web.UI.IValidator
Default Public ReadOnly Property Item(index As Integer) As IValidator

매개 변수

index
Int32

반환할 유효성 검사기의 인덱스입니다.

속성 값

IValidator

지정된 유효성 검사기의 값입니다.

예제

다음 코드 예제는 Item[] 속성입니다.

// Get 'Validators' of the page to myCollection.
ValidatorCollection myCollection = Page.Validators;

// Print the values of Collection using 'Item' property.
string myStr = " ";         
for(int i = 0; i<myCollection.Count; i++)
{
   myStr += myCollection[i].ToString();
   myStr += " ";
}
msgLabel.Text = myStr;        
' Get 'Validators' of the page to myCollection.
Dim myCollection As ValidatorCollection = Page.Validators
' Print the values of Collection using 'Item' property.
Dim myStr As String = " "
Dim i As Integer
For i = 0 To myCollection.Count - 1
   myStr = mystr & CType(myCollection(i),BaseValidator).ToString() & "<br />"
Next i
msgLabel.Text = myStr

적용 대상

추가 정보