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

TileViewItem.Item[String] Property

Returns an element bound to the specified field in the data source.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

public TileViewItemElement this[string fieldName] { get; }

#Parameters

Name Type Description
fieldName String

A String value that represents the field name in the underlying data source for which to return an TileViewItemElement object.

#Property Value

Type Description
TileViewItemElement

A TileViewItemElement object that represents the required element.

#Remarks

Use the Item indexer property to access items of the TileItem.Elements collection by their field names. See an example below.

TileViewItemElement element = tileViewItem1["YearBuilt"];
See Also