SiteMapPath::ParentLevelsDisplayed Property

 

Gets or sets the number of levels of parent nodes the control displays, relative to the currently displayed node.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
[ThemeableAttribute(false)]
property int ParentLevelsDisplayed {
	virtual int get();
	virtual void set(int value);
}

Property Value

Type: System::Int32

An integer that specifies the number of levels of parent nodes displayed, relative to the current context node. The default value is -1, which indicates no restriction on the number of parent levels that the control displays.

Exception Condition
ArgumentOutOfRangeException

The value for ParentLevelsDisplayed is less than -1.

The ParentLevelsDisplayed property governs how many levels of parent nodes are displayed by the SiteMapPath control above the current context node. By default, all parent and ancestor nodes above the current context node are displayed.

The value of this property is stored in view state.

This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and ASP.NET Themes and Skins.

.NET Framework
Available since 2.0
Return to top
Show: