MasterSlidePart

MasterSlidePart

Overview

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

Manages a master slide XML part (ppt/slideMasters/slideMasterN.xml). Read-only for now; provides access to master slide properties and the list of associated layout slide parts.

This class provides 4 methods for working with MasterSlidePart objects in Go programs. Available methods include: layout_part_names, name, save, set_name. 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.

Methods

SignatureDescription
name()std::stringGet the master slide name from .
set_name(value: std::string_view)Set the master slide name on .
layout_part_names()std::vector<std::string>Get list of layout slide part names from this master’s relationships.
save()Save the master slide XML back to the package.

See Also