xelem.3.0

nl.fountain.xelem.excel
Interface Pane

All Superinterfaces:
XLElement
All Known Implementing Classes:
XPane

public interface Pane
extends XLElement

Represents the Pane element.

Excel can split a window into a maximum of 4 panes. Panes come into vision when you apply the splitHorizontal-, splitVertical- or freezePanesAt-methods of the WorksheetOptions.

See Also:
WorksheetOptions.setActiveCell(int, int, int), WorksheetOptions.setActiveCell(int, int), WorksheetOptions.freezePanesAt(int, int), WorksheetOptions.splitHorizontal(int, int), WorksheetOptions.splitVertical(int, int), WorksheetOptions.setRangeSelection(int, String), WorksheetOptions.setRangeSelection(String)

Field Summary
static int BOTTOM_LEFT
          Variable indicating the bottom left pane.
static int BOTTOM_RIGHT
          Variable indicating the bottom right pane.
static int TOP_LEFT
          Variable indicating the top left pane.
static int TOP_RIGHT
          Variable indicating the top right pane.
 
Fields inherited from interface nl.fountain.xelem.excel.XLElement
PREFIX_HTML, PREFIX_O, PREFIX_SS, PREFIX_X, XMLNS, XMLNS_HTML, XMLNS_O, XMLNS_SS, XMLNS_X
 
Method Summary
 int getActiveCol()
           
 int getActiveRow()
           
 int getNumber()
           
 String getRangeSelection()
           
 void setActiveCell(int row, int col)
           
 void setActiveCol(int col)
           
 void setActiveRow(int row)
           
 void setRangeSelection(Area area)
           
 void setRangeSelection(String rc)
           
 
Methods inherited from interface nl.fountain.xelem.excel.XLElement
addElementComment, assemble, getElementComments, getNameSpace, getPrefix, getTagName, setAttributes, setChildElement
 

Field Detail

TOP_LEFT

static final int TOP_LEFT
Variable indicating the top left pane. The top left pane is the standard pane which is allways visible.

See Also:
Constant Field Values

BOTTOM_LEFT

static final int BOTTOM_LEFT
Variable indicating the bottom left pane. The bottom left pane can only be addressed if a window is split horizontally, either by splitting or freezing panes.

See Also:
Constant Field Values

TOP_RIGHT

static final int TOP_RIGHT
Variable indicating the top right pane. The top right pane can only be addressed if a window is split vertically, either by splitting or freezing panes.

See Also:
Constant Field Values

BOTTOM_RIGHT

static final int BOTTOM_RIGHT
Variable indicating the bottom right pane. The bottom right pane can only be addressed if a window is split vertically and horizontally, either by spltting or freezing panes.

See Also:
Constant Field Values
Method Detail

getNumber

int getNumber()

setActiveCell

void setActiveCell(int row,
                   int col)

setActiveCol

void setActiveCol(int col)

getActiveCol

int getActiveCol()

setActiveRow

void setActiveRow(int row)

getActiveRow

int getActiveRow()

setRangeSelection

void setRangeSelection(String rc)

setRangeSelection

void setRangeSelection(Area area)

getRangeSelection

String getRangeSelection()

xelem.3.0