Skip to main content

Images.Item[Int32] Property

Provides indexed access to individual items in the collection.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public virtual Image this[int index] { get; set; }

Parameters

Name Type Description
index Int32

A zero-based integer specifying the desired item’s position within the collection. If it’s negative or exceeds the last available index, an exception is raised.

Property Value

Type Description
Image

A Image object which represents the image at the specified position.

Remarks

Use this property to access items using index notation.

See Also