org.openxmlformats.schemas.presentationml.x2006.main.CTCommonSlideViewProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apache-poi-ooxml Show documentation
Show all versions of apache-poi-ooxml Show documentation
The Apache Commons Codec package contains simple encoder and decoders for
various formats such as Base64 and Hexadecimal. In addition to these
widely used encoders and decoders, the codec package also maintains a
collection of phonetic encoding utilities.
/*
* XML Type: CT_CommonSlideViewProperties
* Namespace: http://schemas.openxmlformats.org/presentationml/2006/main
* Java type: org.openxmlformats.schemas.presentationml.x2006.main.CTCommonSlideViewProperties
*
* Automatically generated - do not modify.
*/
package org.openxmlformats.schemas.presentationml.x2006.main;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* An XML CT_CommonSlideViewProperties(@http://schemas.openxmlformats.org/presentationml/2006/main).
*
* This is a complex type.
*/
public interface CTCommonSlideViewProperties extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctcommonslideviewproperties6ef1type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "cViewPr" element
*/
org.openxmlformats.schemas.presentationml.x2006.main.CTCommonViewProperties getCViewPr();
/**
* Sets the "cViewPr" element
*/
void setCViewPr(org.openxmlformats.schemas.presentationml.x2006.main.CTCommonViewProperties cViewPr);
/**
* Appends and returns a new empty "cViewPr" element
*/
org.openxmlformats.schemas.presentationml.x2006.main.CTCommonViewProperties addNewCViewPr();
/**
* Gets the "guideLst" element
*/
org.openxmlformats.schemas.presentationml.x2006.main.CTGuideList getGuideLst();
/**
* True if has "guideLst" element
*/
boolean isSetGuideLst();
/**
* Sets the "guideLst" element
*/
void setGuideLst(org.openxmlformats.schemas.presentationml.x2006.main.CTGuideList guideLst);
/**
* Appends and returns a new empty "guideLst" element
*/
org.openxmlformats.schemas.presentationml.x2006.main.CTGuideList addNewGuideLst();
/**
* Unsets the "guideLst" element
*/
void unsetGuideLst();
/**
* Gets the "snapToGrid" attribute
*/
boolean getSnapToGrid();
/**
* Gets (as xml) the "snapToGrid" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetSnapToGrid();
/**
* True if has "snapToGrid" attribute
*/
boolean isSetSnapToGrid();
/**
* Sets the "snapToGrid" attribute
*/
void setSnapToGrid(boolean snapToGrid);
/**
* Sets (as xml) the "snapToGrid" attribute
*/
void xsetSnapToGrid(org.apache.xmlbeans.XmlBoolean snapToGrid);
/**
* Unsets the "snapToGrid" attribute
*/
void unsetSnapToGrid();
/**
* Gets the "snapToObjects" attribute
*/
boolean getSnapToObjects();
/**
* Gets (as xml) the "snapToObjects" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetSnapToObjects();
/**
* True if has "snapToObjects" attribute
*/
boolean isSetSnapToObjects();
/**
* Sets the "snapToObjects" attribute
*/
void setSnapToObjects(boolean snapToObjects);
/**
* Sets (as xml) the "snapToObjects" attribute
*/
void xsetSnapToObjects(org.apache.xmlbeans.XmlBoolean snapToObjects);
/**
* Unsets the "snapToObjects" attribute
*/
void unsetSnapToObjects();
/**
* Gets the "showGuides" attribute
*/
boolean getShowGuides();
/**
* Gets (as xml) the "showGuides" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetShowGuides();
/**
* True if has "showGuides" attribute
*/
boolean isSetShowGuides();
/**
* Sets the "showGuides" attribute
*/
void setShowGuides(boolean showGuides);
/**
* Sets (as xml) the "showGuides" attribute
*/
void xsetShowGuides(org.apache.xmlbeans.XmlBoolean showGuides);
/**
* Unsets the "showGuides" attribute
*/
void unsetShowGuides();
}