Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

WinExplorerView.ExtraLargeImages Property

Gets or sets the object that stores Extra Large Images for this WinExplorerView.

Namespace: DevExpress.XtraGrid.Views.WinExplorer

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#Declaration

[DefaultValue(null)]
[DXCategory("Appearance")]
public virtual object ExtraLargeImages { get; set; }

#Property Value

Type Default Description
Object null

An Object that is the image collection that stores Extra Large Images for this WinExplorerView.

#Remarks

To pick Extra Large Images from the collection assigned to the ExtraLargeImages property, assign a GridColumn that stores integer index values to the WinExplorerViewColumns.ExtraLargeImageIndexColumn property. The alternate way to assign Extra Large Images to the WinExplorerView records is to assign an image that contains a GridColumn to the WinExplorerViewColumns.ExtraLargeImageColumn property.

If no Extra Large Image can be found for an item, its stretched Large Image is used instead.

See the WinExplorer View topic for the details.

See Also