Package org.apache.poi.xdgf.usermodel
Class XDGFDocument
- java.lang.Object
-
- org.apache.poi.xdgf.usermodel.XDGFDocument
-
public class XDGFDocument extends java.lang.Object
Represents the root document: /visio/document.xml You're probably actually looking forXmlVisioDocument
, this only contains metadata about the root document in the OOXML package.
-
-
Constructor Summary
Constructors Constructor Description XDGFDocument(com.microsoft.schemas.office.visio.x2012.main.VisioDocumentType document)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XDGFStyleSheet
getDefaultFillStyle()
XDGFStyleSheet
getDefaultGuideStyle()
XDGFStyleSheet
getDefaultLineStyle()
XDGFStyleSheet
getDefaultTextStyle()
XDGFStyleSheet
getStyleById(long id)
com.microsoft.schemas.office.visio.x2012.main.VisioDocumentType
getXmlObject()
-
-
-
Method Detail
-
getXmlObject
@Internal public com.microsoft.schemas.office.visio.x2012.main.VisioDocumentType getXmlObject()
-
getStyleById
public XDGFStyleSheet getStyleById(long id)
-
getDefaultFillStyle
public XDGFStyleSheet getDefaultFillStyle()
-
getDefaultGuideStyle
public XDGFStyleSheet getDefaultGuideStyle()
-
getDefaultLineStyle
public XDGFStyleSheet getDefaultLineStyle()
-
getDefaultTextStyle
public XDGFStyleSheet getDefaultTextStyle()
-
-