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

TileViewOptionsImageLoad.DesiredThumbnailSize Property

Gets or sets the desired size of thumbnail images created during the Asynchronous Image Load.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

public Size DesiredThumbnailSize { get; set; }

#Property Value

Type Description
Size

A Size structure that is the desired thumbnail image size.

#Property Paths

You can access this nested property as listed below:

Object Type Path to DesiredThumbnailSize
TileView
.OptionsImageLoad .DesiredThumbnailSize

#Remarks

In Asynchronous Image Load Mode, the DesiredThumbnailSize property specifies the size of automatically generated thumbnails and thumbnails generated by the ThumbnailImageEventArgs.CreateThumbnailImage method. When displaying the generated thumbnails, they are zoomed in or out to fit the display rectangle.

The DesiredThumbnailSize property’s default value is Size.Empty. In this case, the actual size is specified by the TileViewItemOptions.ItemSize property.

See Also