Skip to main content
Tab

ASPxSiteMapControlBase.ColumnSeparatorTemplate Property

Gets or sets a template used for displaying the content of all column separators within the site map control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
ITemplate null

An object supporting the System.Web.UI.ITemplate interface which contains the template used for displaying the content of column separators.

Remarks

Use the ColumnSeparatorTemplate property to control the contents of all the column separators within the current site map control.

Note that any style settings defined for column separators via the specific ASPxSiteMapControlBase.ColumnSeparatorStyle property are still in effect when specifying the separators’ contents through the ColumnSeparatorTemplate property.

Note

Once a template defined via the ColumnSeparatorTemplate property is created within a control, it is instantiated within a container object of the SiteMapControlColumnSeparatorTemplateContainer type. This container object exposes a set of specific properties to which the template’s child controls can be bound.

See Also