Worksheet.GroupRows

GroupRows(int, int, int, bool)

Groups rows.

public void GroupRows(int firstRow, int lastRow, int outlineLevel, bool isHidden)
ParameterTypeDescription
firstRowInt32The first row index to be grouped.
lastRowInt32The last row index to be grouped.
outlineLevelInt32outlineLevel
isHiddenBooleanSpecifies if the grouped rows are shown.

See Also


GroupRows(int, int, bool)

Groups rows.

public void GroupRows(int firstRow, int lastRow, bool isHidden)
ParameterTypeDescription
firstRowInt32The first row index to be grouped.
lastRowInt32The last row index to be grouped.
isHiddenBooleanSpecifies if the grouped rows are shown.

See Also


GroupRows(int, int, int, bool, bool)

Groups rows.

public void GroupRows(int firstRow, int lastRow, int outlineLevel, bool isHidden, bool addToUndo)
ParameterTypeDescription
firstRowInt32The first row index to be grouped.
lastRowInt32The last row index to be grouped.
outlineLevelInt32outlineLevel
isHiddenBooleanSpecifies if the grouped rows are shown.
addToUndoBooleanSpecifies if this operation will be added into undo manager. And the GridDesktop’s EnableUndo property must be set to true.

See Also


GroupRows(int, int, bool, bool)

Groups rows.

public void GroupRows(int firstRow, int lastRow, bool isHidden, bool addToUndo)
ParameterTypeDescription
firstRowInt32The first row index to be grouped.
lastRowInt32The last row index to be grouped.
isHiddenBooleanSpecifies if the grouped rows are shown.
addToUndoBooleanSpecifies if this operation will be added into undo manager. And the GridDesktop’s EnableUndo property must be set to true.

See Also


GroupRows(int, int)

Groups rows.

public void GroupRows(int firstRow, int lastRow)
ParameterTypeDescription
firstRowInt32The first row index to be grouped.
lastRowInt32The last row index to be grouped.

See Also