Show / Hide Table of Contents

Class PaneCollection

Inheritance
System.Object
PaneCollection
Namespace: DRIT.Spreadsheet
Assembly: DRIT.Spreadsheet.dll
Syntax
public class PaneCollection : IEnumerable<Pane>

Properties

ActivePane

Declaration
public Pane ActivePane { get; set; }
Property Value
Type Description
Pane

BottomLeftPane

Declaration
public Pane BottomLeftPane { get; }
Property Value
Type Description
Pane

BottomRightPane

Declaration
public Pane BottomRightPane { get; }
Property Value
Type Description
Pane

Count

Declaration
public int Count { get; }
Property Value
Type Description
System.Int32

TopLeftPane

Declaration
public Pane TopLeftPane { get; }
Property Value
Type Description
Pane

TopRightPane

Declaration
public Pane TopRightPane { get; }
Property Value
Type Description
Pane

Methods

Clear()

Removes all frozen panes and splits.

Declaration
public void Clear()

FreezeColumns(Int32)

Freeze the specified number of columns on the left.

Declaration
public void FreezeColumns(int columns)
Parameters
Type Name Description
System.Int32 columns

FreezeFirstColumn()

Declaration
public void FreezeFirstColumn()

FreezePanes(Cell)

Declaration
public void FreezePanes(Cell cell)
Parameters
Type Name Description
Cell cell

FreezePanes(Int32, Int32)

Declaration
public void FreezePanes(int columns, int rows)
Parameters
Type Name Description
System.Int32 columns
System.Int32 rows

FreezePanes(String)

Declaration
public void FreezePanes(string cellLabel)
Parameters
Type Name Description
System.String cellLabel

FreezeRows(Int32)

Freeze the specified number of rows on the top.

Declaration
public void FreezeRows(int rows)
Parameters
Type Name Description
System.Int32 rows

FreezeTopRow()

Declaration
public void FreezeTopRow()

GetEnumerator()

Declaration
public IEnumerator<Pane> GetEnumerator()
Returns
Type Description
IEnumerator<Pane>

SplitPanes(Int32, Int32)

Declaration
public void SplitPanes(int columns, int rows)
Parameters
Type Name Description
System.Int32 columns
System.Int32 rows
Remarks

The active pane will be the top-left pane by default.

SplitPanes(String)

Declaration
public void SplitPanes(string cellLabel)
Parameters
Type Name Description
System.String cellLabel

UnfreezePanes()

Declaration
public void UnfreezePanes()
Back to top Generated by DocFX