xelem.3.0

nl.fountain.xelem.excel
Interface ExcelWorkbook

All Superinterfaces:
XLElement
All Known Implementing Classes:
XExcelWorkbook

public interface ExcelWorkbook
extends XLElement

Represents the ExcelWorkbook element.


Field Summary
 
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 getActiveSheet()
          Gets the active sheet. 0 based.
 boolean getProtectStructure()
           
 boolean getProtectWindows()
           
 int getWindowHeight()
           
 int getWindowTopX()
           
 int getWindowTopY()
           
 int getWindowWidth()
           
 void setActiveSheet(int nr)
          Set the active sheet. 0-based.
 void setProtectStructure(boolean protect)
           
 void setProtectWindows(boolean protect)
           
 void setWindowHeight(int height)
           
 void setWindowTopX(int x)
           
 void setWindowTopY(int y)
           
 void setWindowWidth(int width)
           
 
Methods inherited from interface nl.fountain.xelem.excel.XLElement
addElementComment, assemble, getElementComments, getNameSpace, getPrefix, getTagName, setAttributes, setChildElement
 

Method Detail

setWindowHeight

void setWindowHeight(int height)

getWindowHeight

int getWindowHeight()

setWindowWidth

void setWindowWidth(int width)

getWindowWidth

int getWindowWidth()

setWindowTopX

void setWindowTopX(int x)

getWindowTopX

int getWindowTopX()

setWindowTopY

void setWindowTopY(int y)

getWindowTopY

int getWindowTopY()

setActiveSheet

void setActiveSheet(int nr)
Set the active sheet. 0-based.

Parameters:
nr - the index of the active sheet.

getActiveSheet

int getActiveSheet()
Gets the active sheet. 0 based.

Returns:
an int >= 0

setProtectStructure

void setProtectStructure(boolean protect)

getProtectStructure

boolean getProtectStructure()

setProtectWindows

void setProtectWindows(boolean protect)

getProtectWindows

boolean getProtectWindows()

xelem.3.0