RepeaterItemCollection.Item[Int32] Propriedade

Definição

Obtém o objeto RepeaterItem no índice especificado na coleção.

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

Parâmetros

index
Int32

O índice baseado em zero do RepeaterItem a ser recuperado na coleção.

Valor da propriedade

Um RepeaterItem objeto no índice especificado na coleção.

Exemplos

Para ver esse código no contexto de um exemplo completo, consulte o tópico de RepeaterItemCollection classe .

      void Item_Clicked(Object Sender, EventArgs e)
      {
labelDisplay.Text = "Using item indexer.<br />";
labelDisplay.Text += "The Items collection contains: <br />";

// Display the elements of the RepeaterItemCollection using the indexer.
RepeaterItemCollection  myItemCollection = myRepeater.Items;
for(int index=0;index < myItemCollection.Count;index++)
labelDisplay.Text += ((DataBoundLiteralControl)
   myItemCollection[index].Controls[0]).Text + "<br />";
      }
Sub Item_Clicked(Sender As [Object], e As EventArgs)
   labelDisplay.Text = "Using item indexer.<br />"
   labelDisplay.Text += "The Items collection contains: <br />"
   
   ' Display the elements of the RepeaterItemCollection using the indexer.
   Dim myItemCollection As RepeaterItemCollection = myRepeater.Items
   Dim index As Integer
   For index = 0 To myItemCollection.Count - 1
      labelDisplay.Text += CType(myItemCollection(index).Controls(0), DataBoundLiteralControl).Text + "<br />"
   Next index
End Sub 'Item_Clicked

Comentários

Use esse indexador para obter um RepeaterItem objeto do RepeaterItemCollection no índice especificado, usando a notação de matriz.

Aplica-se a

Confira também