AppPropertiesPart

AppPropertiesPart — Aspose.Slides FOSS Java API Reference

AppPropertiesPart — Parses and serializes docProps/app.

Package: org.aspose.slides.foss.internal.pptx

Note: This is an internal implementation class. Do not import or use it directly — the package org.aspose.slides.foss.internal.pptx is not part of the public API and may change without notice. This page is provided for reference only.


Properties

PropertyTypeAccessDescription
applicationStringRead/Write
appVersionStringRead/Write
companyStringRead/Write
managerStringRead/Write
presentationFormatStringRead/Write
templateStringRead/Write
hyperlinkBaseStringRead/Write
totalTimeIntegerRead/Write
slidesIntegerRead/Write
hiddenSlidesIntegerRead/Write
notesIntegerRead/Write
paragraphsIntegerRead/Write
wordsIntegerRead/Write
mmClipsIntegerRead/Write
scaleCropBooleanRead/Write
linksUpToDateBooleanRead/Write
sharedDocBooleanRead/Write
hyperlinksChangedBooleanRead/Write
headingPairsList<HeadingPairData>Read/Write
titlesOfPartsList<String>Read/Write

Methods

MethodReturnsDescription
parse()voidParses the XML content from the package into field values.
getText(String localName)StringReturns the text content of the element with the given local name, or null if not found or empty.
getInt(String localName)IntegerReturns the integer value of the element with the given local name, or null if not found or not a valid integer.
getBool(String localName)BooleanReturns the boolean value of the element with the given local name, or null if not found.
parseHeadingPairs()voidParses HeadingPairs from the vt:vector element.
parseTitlesOfParts()voidParses TitlesOfParts from the vt:vector element.
markDirty()voidMarks this part as dirty so it will be serialized on next save.
save()voidSerializes the properties back to the package.
setText(Document doc, Element parent, String localName, String value)voidWrites a text element as a child of the given parent, if value is non-null.
setInt(Document doc, Element parent, String localName, Integer value)voidWrites an integer element as a child of the given parent, if value is non-null.
setBool(Document doc, Element parent, String localName, Boolean value)voidWrites a boolean element as a child of the given parent, if value is non-null.
writeHeadingPairs(Document doc, Element parent)voidWrites the heading pairs into a HeadingPairs/vt:vector structure.
writeTitlesOfParts(Document doc, Element parent)voidWrites the titles of parts into a TitlesOfParts/vt:vector structure.
getApplication()StringReturns the Application property.
setApplication(String value)voidSets the Application property.
getAppVersion()StringReturns the AppVersion property.
setAppVersion(String value)voidSets the AppVersion property.
getCompany()StringReturns the Company property.
setCompany(String value)voidSets the Company property.
getManager()StringReturns the Manager property.
setManager(String value)voidSets the Manager property.
getPresentationFormat()StringReturns the PresentationFormat property.
setPresentationFormat(String value)voidSets the PresentationFormat property.
getTemplate()StringReturns the Template property.
setTemplate(String value)voidSets the Template property.
getHyperlinkBase()StringReturns the HyperlinkBase property.
setHyperlinkBase(String value)voidSets the HyperlinkBase property.
getTotalTime()IntegerReturns the TotalTime property.
setTotalTime(Integer value)voidSets the TotalTime property.
getSlides()IntegerReturns the Slides property.
setSlides(Integer value)voidSets the Slides property.
getHiddenSlides()IntegerReturns the HiddenSlides property.
setHiddenSlides(Integer value)voidSets the HiddenSlides property.
getNotes()IntegerReturns the Notes property.
setNotes(Integer value)voidSets the Notes property.
getParagraphs()IntegerReturns the Paragraphs property.
setParagraphs(Integer value)voidSets the Paragraphs property.
getWords()IntegerReturns the Words property.
setWords(Integer value)voidSets the Words property.
getMmClips()IntegerReturns the MMClips property.
setMmClips(Integer value)voidSets the MMClips property.
getScaleCrop()BooleanReturns the ScaleCrop property.
setScaleCrop(Boolean value)voidSets the ScaleCrop property.
getLinksUpToDate()BooleanReturns the LinksUpToDate property.
setLinksUpToDate(Boolean value)voidSets the LinksUpToDate property.
getSharedDoc()BooleanReturns the SharedDoc property.
setSharedDoc(Boolean value)voidSets the SharedDoc property.
getHyperlinksChanged()BooleanReturns the HyperlinksChanged property.
setHyperlinksChanged(Boolean value)voidSets the HyperlinksChanged property.
getHeadingPairs()List<HeadingPairData>Returns the heading pairs list as an unmodifiable view.
setHeadingPairs(List<HeadingPairData> value)voidSets the heading pairs list.
getTitlesOfParts()List<String>Returns the titles of parts list as an unmodifiable view.
setTitlesOfParts(List<String> value)voidSets the titles of parts list.
clear()voidResets all properties to null/empty and marks the part as dirty.

See Also