AppPropertiesPart

AppPropertiesPart

Overview

AppPropertiesPart is a class in Aspose.Slides FOSS for C++.

Parse/serialize docProps/app.xml. Reads extended properties from the OPC package on construction, exposes them as public fields, and can serialize them back via save().

This class provides 3 methods for working with AppPropertiesPart objects in Go programs. Available methods include: clear, mark_dirty, save. All exported members are accessible to any Go application after adding the package via go get github.com/aspose-pdf-foss/aspose-pdf-foss-for-go. Properties: app_version, application, company, heading_pairs, hidden_slides, hyperlink_base, and 14 more.

Properties

NameTypeAccessDescription
applicationstd::optional<std::string>Read/WriteGets or sets the application.
app_versionstd::optional<std::string>Read/WriteGets or sets the app version.
companystd::optional<std::string>Read/WriteGets or sets the company.
managerstd::optional<std::string>Read/WriteGets or sets the manager.
presentation_formatstd::optional<std::string>Read/WriteGets or sets the presentation format.
template_namestd::optional<std::string>Read/WriteGets or sets the template name.
hyperlink_basestd::optional<std::string>Read/WriteGets or sets the hyperlink base.
total_timestd::optional<int>Read/WriteGets or sets the total time.
slidesstd::optional<int>Read/WriteGets or sets the slides.
hidden_slidesstd::optional<int>Read/WriteGets or sets the hidden slides.
notesstd::optional<int>Read/WriteGets or sets the notes.
paragraphsstd::optional<int>Read/WriteGets or sets the paragraphs.
wordsstd::optional<int>Read/WriteGets or sets the words.
mm_clipsstd::optional<int>Read/WriteGets or sets the mm clips.
scale_cropstd::optional<bool>Read/WriteGets or sets the scale crop.
links_up_to_datestd::optional<bool>Read/WriteGets or sets the links up to date.
shared_docstd::optional<bool>Read/WriteGets or sets the shared doc.
hyperlinks_changedstd::optional<bool>Read/WriteGets or sets the hyperlinks changed.
heading_pairsstd::vector<HeadingPairData>Read/WriteGets or sets the heading pairs.
titles_of_partsstd::vector<std::string>Read/WriteGets or sets the titles of parts.

Methods

SignatureDescription
mark_dirty()Mark the part as dirty so save() will regenerate the XML.
save()Parse/serialize docProps/app.xml. Reads extended properties from the OPC package on construction,
clear()Reset all properties to empty/null state and mark dirty.

See Also