Skip to main content
A newer version of this page is available. .
Tab

ASPxImageGallery.ItemTextTemplate Property

Gets or sets a common template used for displaying the thumbnail text area content of all item’s.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(null)]
public ITemplate ItemTextTemplate { get; set; }

Property Value

Type Default Description
ITemplate *null*

An object supporting the ITemplate interface, which contains the template used for displaying the thumbnail text area of all items..

Remarks

Use the ItemTextTemplate property to define a common item thumbnail text area template.

The text content of an individual item can be defined using the item’s ImageGalleryItem.TextTemplate property.

Note

Once a template defined by this property is created, it is instantiated within a container represented by the ImageGalleryThumbnailTemplateContainer class. The ImageGalleryThumbnailTemplateContainer class implements a set of properties which can be useful when designing a template and binding the controls composing this template to data.

See Also