[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IGroupInfo

Interface IGroupInfo

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents the information of a group.

public interface IGroupInfo

Properties

Children

Get children of current group.

List<IGroupInfo> Children { get; }

Property Value

System.Collections.Generic.List<T><IGroupInfo>

EndIndex

Gets the end index of current group.

int EndIndex { get; }

Property Value

int

The end index of current group.

IsCollapsed

Get whether the current group is collapsed.

bool IsCollapsed { get; }

Property Value

bool

Level

Gets the level of current group.

int Level { get; }

Property Value

int

The level of current group.

Parent

Get the parent of current group.

IGroupInfo Parent { get; }

Property Value

IGroupInfo

StartIndex

Gets the start index of current group.

int StartIndex { get; }

Property Value

int

The start index of current group.

Methods

Collapse()

Collapses current group.

void Collapse()

Expand()

Expands current group.

void Expand()