com.microsoft.schemas.office.drawing.x2012.chart.SpPrDocument Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: spPr
* Namespace: http://schemas.microsoft.com/office/drawing/2012/chart
* Java type: com.microsoft.schemas.office.drawing.x2012.chart.SpPrDocument
*
* Automatically generated - do not modify.
*/
package com.microsoft.schemas.office.drawing.x2012.chart;
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;
/**
* A document containing one spPr(@http://schemas.microsoft.com/office/drawing/2012/chart) element.
*
* This is a complex type.
*/
public interface SpPrDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "spprd41edoctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "spPr" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties getSpPr();
/**
* Sets the "spPr" element
*/
void setSpPr(org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties spPr);
/**
* Appends and returns a new empty "spPr" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties addNewSpPr();
}