Interface CTFFCheckBox
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTFFCheckBox extends XmlObject
An XML CT_FFCheckBox(@http://schemas.openxmlformats.org/wordprocessingml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTFFCheckBox.Factory
A factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaType
type
-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CTOnOff
addNewChecked()
Appends and returns a new empty "checked" elementCTOnOff
addNewDefault()
Appends and returns a new empty "default" elementCTHpsMeasure
addNewSize()
Appends and returns a new empty "size" elementCTOnOff
addNewSizeAuto()
Appends and returns a new empty "sizeAuto" elementCTOnOff
getChecked()
Gets the "checked" elementCTOnOff
getDefault()
Gets the "default" elementCTHpsMeasure
getSize()
Gets the "size" elementCTOnOff
getSizeAuto()
Gets the "sizeAuto" elementboolean
isSetChecked()
True if has "checked" elementboolean
isSetDefault()
True if has "default" elementboolean
isSetSize()
True if has "size" elementboolean
isSetSizeAuto()
True if has "sizeAuto" elementvoid
setChecked(CTOnOff checked)
Sets the "checked" elementvoid
setDefault(CTOnOff xdefault)
Sets the "default" elementvoid
setSize(CTHpsMeasure size)
Sets the "size" elementvoid
setSizeAuto(CTOnOff sizeAuto)
Sets the "sizeAuto" elementvoid
unsetChecked()
Unsets the "checked" elementvoid
unsetDefault()
Unsets the "default" elementvoid
unsetSize()
Unsets the "size" elementvoid
unsetSizeAuto()
Unsets the "sizeAuto" element-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getSize
CTHpsMeasure getSize()
Gets the "size" element
-
isSetSize
boolean isSetSize()
True if has "size" element
-
setSize
void setSize(CTHpsMeasure size)
Sets the "size" element
-
addNewSize
CTHpsMeasure addNewSize()
Appends and returns a new empty "size" element
-
unsetSize
void unsetSize()
Unsets the "size" element
-
getSizeAuto
CTOnOff getSizeAuto()
Gets the "sizeAuto" element
-
isSetSizeAuto
boolean isSetSizeAuto()
True if has "sizeAuto" element
-
setSizeAuto
void setSizeAuto(CTOnOff sizeAuto)
Sets the "sizeAuto" element
-
addNewSizeAuto
CTOnOff addNewSizeAuto()
Appends and returns a new empty "sizeAuto" element
-
unsetSizeAuto
void unsetSizeAuto()
Unsets the "sizeAuto" element
-
getDefault
CTOnOff getDefault()
Gets the "default" element
-
isSetDefault
boolean isSetDefault()
True if has "default" element
-
setDefault
void setDefault(CTOnOff xdefault)
Sets the "default" element
-
addNewDefault
CTOnOff addNewDefault()
Appends and returns a new empty "default" element
-
unsetDefault
void unsetDefault()
Unsets the "default" element
-
getChecked
CTOnOff getChecked()
Gets the "checked" element
-
isSetChecked
boolean isSetChecked()
True if has "checked" element
-
setChecked
void setChecked(CTOnOff checked)
Sets the "checked" element
-
addNewChecked
CTOnOff addNewChecked()
Appends and returns a new empty "checked" element
-
unsetChecked
void unsetChecked()
Unsets the "checked" element
-
-