ValidatorCollection.Item[Int32] Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le contrôle serveur de validation à l'emplacement d'index spécifié dans la collection 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
Paramètres
- index
- Int32
Index du validateur à retourner.
Valeur de propriété
La valeur du validateur spécifié.
Exemples
L’exemple de code suivant illustre l’utilisation de la Item[] propriété .
// 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
S’applique à
Voir aussi
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.