Package com.grapecity.documents.excel
Interface IGroupInfo
public interface IGroupInfo
Represents the information of a group.
-
Method Summary
Modifier and TypeMethodDescriptionvoidcollapse()Collapses current group.voidexpand()Expands current group.Get children of current groupintGets the end index of current group.booleanGet whether the current group is collapsedintgetLevel()Gets the level of current group.Get the parent of current group.intGets the start index of current group.
-
Method Details
-
expand
void expand()Expands current group. -
collapse
void collapse()Collapses current group. -
getStartIndex
int getStartIndex()Gets the start index of current group. -
getEndIndex
int getEndIndex()Gets the end index of current group. -
getLevel
int getLevel()Gets the level of current group. -
getIsCollapsed
boolean getIsCollapsed()Get whether the current group is collapsed -
getParent
IGroupInfo getParent()Get the parent of current group. -
getChildren
List<IGroupInfo> getChildren()Get children of current group
-