Uses of Class
org.apache.poi.hslf.model.textproperties.TextPropCollection
-
Packages that use TextPropCollection Package Description org.apache.poi.hslf.dev org.apache.poi.hslf.model.textproperties org.apache.poi.hslf.record org.apache.poi.hslf.usermodel -
-
Uses of TextPropCollection in org.apache.poi.hslf.dev
Methods in org.apache.poi.hslf.dev with parameters of type TextPropCollection Modifier and Type Method Description static void
TextStyleListing. showTextProps(TextPropCollection tpc)
-
Uses of TextPropCollection in org.apache.poi.hslf.model.textproperties
Methods in org.apache.poi.hslf.model.textproperties with parameters of type TextPropCollection Modifier and Type Method Description void
TextPropCollection. copy(TextPropCollection other)
Clones the given text properties -
Uses of TextPropCollection in org.apache.poi.hslf.record
Methods in org.apache.poi.hslf.record that return TextPropCollection Modifier and Type Method Description TextPropCollection
StyleTextPropAtom. addCharacterTextPropCollection(int charactersCovered)
Create a new Character TextPropCollection, and add it to the listTextPropCollection
StyleTextPropAtom. addParagraphTextPropCollection(int charactersCovered)
Create a new Paragraph TextPropCollection, and add it to the listMethods in org.apache.poi.hslf.record that return types with arguments of type TextPropCollection Modifier and Type Method Description java.util.List<TextPropCollection>
StyleTextPropAtom. getCharacterStyles()
java.util.List<TextPropCollection>
TxMasterStyleAtom. getCharacterStyles()
Returns array of character styles defined in this record.java.util.List<TextPropCollection>
StyleTextPropAtom. getParagraphStyles()
java.util.List<TextPropCollection>
TxMasterStyleAtom. getParagraphStyles()
Returns array of paragraph styles defined in this record.Method parameters in org.apache.poi.hslf.record with type arguments of type TextPropCollection Modifier and Type Method Description void
StyleTextPropAtom. setCharacterStyles(java.util.List<TextPropCollection> cs)
Updates the link list of TextPropCollections which make up the character stylingsvoid
StyleTextPropAtom. setParagraphStyles(java.util.List<TextPropCollection> ps)
Updates the link list of TextPropCollections which make up the paragraph stylings -
Uses of TextPropCollection in org.apache.poi.hslf.usermodel
Methods in org.apache.poi.hslf.usermodel that return TextPropCollection Modifier and Type Method Description TextPropCollection
HSLFTextRun. getCharacterStyle()
TextPropCollection
HSLFTextParagraph. getParagraphStyle()
abstract TextPropCollection
HSLFMasterSheet. getPropCollection(int txtype, int level, java.lang.String name, boolean isCharacter)
Find the master collection for the given txtype/level/name.TextPropCollection
HSLFSlideMaster. getPropCollection(int txtype, int level, java.lang.String name, boolean isCharacter)
Find the master collection for the given txtype/level/name.TextPropCollection
HSLFTitleMaster. getPropCollection(int txtype, int level, java.lang.String name, boolean isCharacter)
Delegate the call to the underlying slide master.Methods in org.apache.poi.hslf.usermodel with parameters of type TextPropCollection 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.void
HSLFTextRun. setCharacterStyle(TextPropCollection characterStyle)
void
HSLFTextParagraph. setParagraphStyle(TextPropCollection paragraphStyle)
protected void
HSLFTextParagraph. setPropVal(TextPropCollection props, java.lang.String name, java.lang.Integer val)
Returns the named TextProp, either by fetching it (if it exists) or adding it (if it didn't)
-