Skip to main content
Tab

AutoCompleteBoxPropertiesBase.ImageUrlField Property

Gets or sets the data source field that provides image locations for the editor’s items.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public string ImageUrlField { get; set; }

Property Value

Type Default Description
String String.Empty

A string value that specifies the name of the data source field from which the editor obtains item image locations.

Remarks

If an editor is data bound (via the AutoCompleteBoxPropertiesBase.DataSourceID or AutoCompleteBoxPropertiesBase.DataSource property), the editor populates its AutoCompleteBoxPropertiesBase.Items collection by retrieving items from the specified data source and obtaining item characteristics (such item texts, values or displayed images) from specific data fields. Use the ImageUrlField property to specify the data source field from which the item image locations should be obtained.

Note

The ImageUrlField property synchronizes its value with the editor’s ASPxAutoCompleteBoxBase.ImageUrlField property.

See Also