/* * XML Type: CT_TextNormalAutofit * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextNormalAutofit * * Automatically generated - do not modify. */ package org.openxmlformats.schemas.drawingml.x2006.main; /** * An XML CT_TextNormalAutofit(@http://schemas.openxmlformats.org/drawingml/2006/main). * * This is a complex type. */ public interface CTTextNormalAutofit extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTTextNormalAutofit.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("cttextnormalautofitbbdftype"); /** * Gets the "fontScale" attribute */ int getFontScale(); /** * Gets (as xml) the "fontScale" attribute */ org.openxmlformats.schemas.drawingml.x2006.main.STTextFontScalePercent xgetFontScale(); /** * True if has "fontScale" attribute */ boolean isSetFontScale(); /** * Sets the "fontScale" attribute */ void setFontScale(int fontScale); /** * Sets (as xml) the "fontScale" attribute */ void xsetFontScale(org.openxmlformats.schemas.drawingml.x2006.main.STTextFontScalePercent fontScale); /** * Unsets the "fontScale" attribute */ void unsetFontScale(); /** * Gets the "lnSpcReduction" attribute */ int getLnSpcReduction(); /** * Gets (as xml) the "lnSpcReduction" attribute */ org.openxmlformats.schemas.drawingml.x2006.main.STTextSpacingPercent xgetLnSpcReduction(); /** * True if has "lnSpcReduction" attribute */ boolean isSetLnSpcReduction(); /** * Sets the "lnSpcReduction" attribute */ void setLnSpcReduction(int lnSpcReduction); /** * Sets (as xml) the "lnSpcReduction" attribute */ void xsetLnSpcReduction(org.openxmlformats.schemas.drawingml.x2006.main.STTextSpacingPercent lnSpcReduction); /** * Unsets the "lnSpcReduction" attribute */ void unsetLnSpcReduction(); /** * A factory class with static methods for creating instances * of this type. */ }