All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.docx4j.com.microsoft.schemas.office.drawing.x2014.chartex.CTAxisTitle Maven / Gradle / Ivy

There is a newer version: 11.5.0
Show newest version

package org.docx4j.com.microsoft.schemas.office.drawing.x2014.chartex;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
import org.docx4j.dml.CTShapeProperties;
import org.docx4j.dml.CTTextBody;


/**
 * 

Java class for CT_AxisTitle complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CT_AxisTitle">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="tx" type="{http://schemas.microsoft.com/office/drawing/2014/chartex}CT_Text" minOccurs="0"/>
 *         <element name="spPr" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ShapeProperties" minOccurs="0"/>
 *         <element name="txPr" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_TextBody" minOccurs="0"/>
 *         <element name="extLst" type="{http://schemas.microsoft.com/office/drawing/2014/chartex}CT_ExtensionList" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CT_AxisTitle", propOrder = { "tx", "spPr", "txPr", "extLst" }) public class CTAxisTitle { protected CTText tx; protected CTShapeProperties spPr; protected CTTextBody txPr; protected CTExtensionList extLst; /** * Gets the value of the tx property. * * @return * possible object is * {@link CTText } * */ public CTText getTx() { return tx; } /** * Sets the value of the tx property. * * @param value * allowed object is * {@link CTText } * */ public void setTx(CTText value) { this.tx = value; } /** * Gets the value of the spPr property. * * @return * possible object is * {@link CTShapeProperties } * */ public CTShapeProperties getSpPr() { return spPr; } /** * Sets the value of the spPr property. * * @param value * allowed object is * {@link CTShapeProperties } * */ public void setSpPr(CTShapeProperties value) { this.spPr = value; } /** * Gets the value of the txPr property. * * @return * possible object is * {@link CTTextBody } * */ public CTTextBody getTxPr() { return txPr; } /** * Sets the value of the txPr property. * * @param value * allowed object is * {@link CTTextBody } * */ public void setTxPr(CTTextBody value) { this.txPr = value; } /** * Gets the value of the extLst property. * * @return * possible object is * {@link CTExtensionList } * */ public CTExtensionList getExtLst() { return extLst; } /** * Sets the value of the extLst property. * * @param value * allowed object is * {@link CTExtensionList } * */ public void setExtLst(CTExtensionList value) { this.extLst = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy