Uses of Class
org.apache.poi.hslf.model.textproperties.TextProp
-
Packages that use TextProp Package Description org.apache.poi.hslf.model.textproperties org.apache.poi.hslf.usermodel -
-
Uses of TextProp in org.apache.poi.hslf.model.textproperties
Subclasses of TextProp in org.apache.poi.hslf.model.textproperties Modifier and Type Class Description class
BitMaskTextProp
Definition of a special kind of property of some text, or its paragraph.class
CharFlagsTextProp
Definition for the common character text property bitset, which handles bold/italic/underline etc.class
FontAlignmentProp
Definition for the font alignment property.class
HSLFTabStopPropCollection
Container for tabstop listsclass
ParagraphFlagsTextProp
Definition for the common paragraph text property bitset.class
TextAlignmentProp
Definition for the text alignment property.class
WrapFlagsTextProp
Methods in org.apache.poi.hslf.model.textproperties with type parameters of type TextProp Modifier and Type Method Description <T extends TextProp>
TTextPropCollection. addWithName(java.lang.String name)
Add the TextProp with this name to the list<T extends TextProp>
TTextPropCollection. findByName(java.lang.String textPropName)
Fetch the TextProp with this name, or null if it isn't present<T extends TextProp>
TTextPropCollection. removeByName(java.lang.String name)
Methods in org.apache.poi.hslf.model.textproperties that return TextProp Modifier and Type Method Description TextProp
TextProp. clone()
Clone, eg when you want to actually make use of one of these.Methods in org.apache.poi.hslf.model.textproperties that return types with arguments of type TextProp Modifier and Type Method Description java.util.List<TextProp>
TextPropCollection. getTextPropList()
Fetch the TextProps that define this styling in the record orderMethods in org.apache.poi.hslf.model.textproperties with parameters of type TextProp Modifier and Type Method Description void
TextPropCollection. addProp(TextProp textProp)
Add the property at the correct position.Constructors in org.apache.poi.hslf.model.textproperties with parameters of type TextProp Constructor Description TextProp(TextProp other)
Clones the property -
Uses of TextProp in org.apache.poi.hslf.usermodel
Methods in org.apache.poi.hslf.usermodel with type parameters of type TextProp Modifier and Type Method Description protected <T extends TextProp>
THSLFTextParagraph. getPropVal(TextPropCollection props, java.lang.String propName)
Fetch the value of the given Paragraph related TextProp.
-