VisualCollection::Item Property (Int32)

 

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

Namespace:   System.Windows.Media
Assembly:  PresentationCore (in PresentationCore.dll)

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

Parameters

index
Type: System::Int32

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

Property Value

Type: System.Windows.Media::Visual^

The Visual that is stored at index.

Exception Condition
ArgumentOutOfRangeException

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

ArgumentException

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

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

.NET Framework
Available since 3.0
Return to top
Show: