| java.lang.Object org.apache.poi.hslf.model.textproperties.TextProp org.apache.poi.hslf.model.textproperties.BitMaskTextProp
All known Subclasses: org.apache.poi.hslf.model.textproperties.ParagraphFlagsTextProp, org.apache.poi.hslf.model.textproperties.CharFlagsTextProp,
BitMaskTextProp | public class BitMaskTextProp extends TextProp implements Cloneable(Code) | | Definition of a special kind of property of some text, or its
paragraph. For these properties, a flag in the "contains" header
field tells you the data property family will exist. The value
of the property is itself a mask, encoding several different
(but related) properties
|
BitMaskTextProp | public BitMaskTextProp(int sizeOfDataBlock, int maskInHeader, String overallName, String[] subPropNames)(Code) | | |
getSubPropMatches | public boolean[] getSubPropMatches()(Code) | | Fetch the list of if the sub properties match or not
|
getSubPropNames | public String[] getSubPropNames()(Code) | | Fetch the list of the names of the sub properties
|
getSubValue | public boolean getSubValue(int idx)(Code) | | Fetch the true/false status of the subproperty with the given index
|
getWriteMask | public int getWriteMask()(Code) | | As we're purely mask based, just set flags for stuff
that is set
|
setSubValue | public void setSubValue(boolean value, int idx)(Code) | | Set the true/false status of the subproperty with the given index
|
setValue | public void setValue(int val)(Code) | | Set the value of the text property, and recompute the sub
properties based on it
|
|
|