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

LevelProperties.NodeTextTemplate Property

Gets or sets a template used for displaying the text content of all the site map nodes of the current level.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(null)]
public virtual ITemplate NodeTextTemplate { 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 text content of the site map nodes within the level.

Remarks

Use the NodeTextTemplate property to control the text contents of the site map nodes that belong to the current hierarchy level. The template defined using this property replaces the text content of each node of the level (in particular, the text specified) but doesn’t affect the defined image.

Note that any style settings defined for the site map nodes via the specific properties (such as the ASPxSiteMapControl.DefaultLevelProperties, ASPxSiteMapControl.LevelProperties, ASPxSiteMapControlBase.ColumnStyle, etc.) are still in effect for the level’s site map nodes whose text contents are specified, using the NodeTextTemplate property.

In order to define a common text content for all the site map nodes within a site map control, the control’s ASPxSiteMapControlBase.NodeTextTemplate property can be used.

Note

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

See Also