Package org.apache.poi.xdgf.usermodel
Class XDGFSheet
- java.lang.Object
-
- org.apache.poi.xdgf.usermodel.XDGFSheet
-
- Direct Known Subclasses:
XDGFPageSheet,XDGFShape,XDGFStyleSheet
public abstract class XDGFSheet extends Object
A sheet is a collection of properties that specify information for a shape, master, drawing page, style, or web drawing.
-
-
Constructor Summary
Constructors Constructor Description XDGFSheet(com.microsoft.schemas.office.visio.x2012.main.SheetType sheet, XDGFDocument document)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XDGFCellgetCell(String cellName)A cell is really just a settingXDGFDocumentgetDocument()XDGFStyleSheetgetFillStyle()ColorgetFontColor()DoublegetFontSize()IntegergetLineCap()ColorgetLineColor()IntegergetLinePattern()XDGFStyleSheetgetLineStyle()DoublegetLineWeight()XDGFSectiongetSection(String sectionName)XDGFStyleSheetgetTextStyle()
-
-
-
Constructor Detail
-
XDGFSheet
public XDGFSheet(com.microsoft.schemas.office.visio.x2012.main.SheetType sheet, XDGFDocument document)
-
-
Method Detail
-
getDocument
public XDGFDocument getDocument()
-
getCell
public XDGFCell getCell(String cellName)
A cell is really just a setting- Parameters:
cellName- The particular setting you want
-
getSection
public XDGFSection getSection(String sectionName)
-
getLineStyle
public XDGFStyleSheet getLineStyle()
-
getFillStyle
public XDGFStyleSheet getFillStyle()
-
getTextStyle
public XDGFStyleSheet getTextStyle()
-
getFontColor
public Color getFontColor()
-
getFontSize
public Double getFontSize()
-
getLineCap
public Integer getLineCap()
-
getLineColor
public Color getLineColor()
-
getLinePattern
public Integer getLinePattern()
-
getLineWeight
public Double getLineWeight()
-
-