VisualCollection.Item[Int32] Property

Definition

Gets or sets the Visual that is stored at the zero-based index of the VisualCollection.

public:
 property System::Windows::Media::Visual ^ default[int] { System::Windows::Media::Visual ^ get(int index); void set(int index, System::Windows::Media::Visual ^ value); };
public System.Windows.Media.Visual this[int index] { get; set; }
member this.Item(int) : System.Windows.Media.Visual with get, set
Default Public Property Item(index As Integer) As Visual

Parameters

index
Int32

The zero-based index of the VisualCollection from which to get or set the Visual.

Property Value

The Visual that is stored at index.

Exceptions

index is less than zero, or index is equal to or greater than Count.

The new child element already has a parent, or the value at the specified index is not null.

Remarks

This property provides the ability to access a specific Visual in the VisualCollection by using an index.

Applies to