Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

VGridControlBase.FullExpandRow(BaseRow) Method

Expands the specified row and all its children.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

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

#Declaration

public virtual void FullExpandRow(
    BaseRow row
)

#Parameters

Name Type Description
row BaseRow

A BaseRow descendant that represents the row to expand.

#Remarks

The FullExpandRow method expands the specified row and all its children. This method traverses through all the child rows that reside within the specified row. If the visited child row has children, the FullExpandRow method sets its BaseRow.Expanded property to true.

Calling the FullExpandRow method will have no effect if the specified row has no child rows or is a null reference.

See Also