Skip to main content
Tab

ASPxImageSlider.ItemTextTemplate Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
ITemplate null

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

Remarks

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

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

Note

Once a template defined by this property is created, it is instantiated within a container represented by the ImageSliderItemTemplateContainer class. The ImageSliderItemTemplateContainer 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