UIElementCollection::Item Property (Int32)

 

Gets or sets the UIElement stored at the zero-based index position of the UIElementCollection.

Namespace:   System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
property UIElement^ default[
	int index
] {
	virtual UIElement^ get(int index);
	virtual void set(int index, UIElement^ value);
}

Parameters

index
Type: System::Int32

The index position of the UIElement.

Property Value

Type: System.Windows::UIElement^

A UIElement at the specified index position.

The following example uses the Item property to identify the child element at a specified index position.

void GetItem(object sender, RoutedEventArgs e)
{
    TextBlock txt2 = new TextBlock();
    sp1.Children.Add(txt2);
    txt2.Text = "UIElement at Index position [0] is " + sp1.Children[0].ToString();
}

.NET Framework
Available since 3.0
Return to top
Show: