Skip to main content

GridLevelNode.IsRootLevel Property

Gets whether the current node is the root node.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

[Browsable(false)]
public virtual bool IsRootLevel { get; }

Property Value

Type Description
Boolean

true if the current node is the root node; otherwise, false.

Remarks

The root node isn’t owned by any other node and therefore it’s GridLevelNode.Parent property returns null.

For the node referred to by the GridControl.LevelTree member the IsRootLevel property returns true. For all its child nodes, false is returned.

See Also