SiteMapPath::NodeStyle Property
Gets the style used for the display text for all nodes in the site navigation path.
Assembly: System.Web (in System.Web.dll)
public: [PersistenceModeAttribute(PersistenceMode::InnerProperty)] property Style^ NodeStyle { Style^ get(); }
Property Value
Type: System.Web.UI.WebControls::Style^The Style that contains the style settings for the display text in the SiteMapPath control.
Use the NodeStyle property to control the appearance of the display text for all navigation path nodes rendered by the control. By default, the display text is that specified in the Title property of the SiteMapNode that represents the page. Common style settings include custom background color, foreground color, font properties, and node spacing.
For SiteMapPath nodes, style properties are merged into a single style, in the following order:
NodeStyle
CurrentNodeStyle or RootNodeStyle, depending on the node type.
Note |
|---|
If you set the node font style to a strikeout or overline style, the default underline style of the node is not displayed unless it is explicitly set to true. |
If the NodeStyle is defined, it is initially applied to each node. If an additional style is defined for a particular type of node, such as the root node or current node, this style supersedes the general style specified in the NodeStyle property. If a template is defined for a particular type of node, it supersedes all defined styles for that node.
The following code example demonstrates how to define a NodeStyle that is merged with a RootNodeStyle to demonstrate the order of style precedence for the SiteMapPath nodes.
Available since 2.0
