Add()

CustomXmlPartCollection::Add(System::String) method

Adds new custom xml part.

System::SharedPtr<ICustomXmlPart> Aspose::Slides::CustomXmlPartCollection::Add(System::String xmlString) override

Arguments

ParameterTypeDescription
xmlStringSystem::StringThe xml string of new part to be added.

Return Value

Created custom xml part.

CustomXmlPartCollection::Add(System::ArrayPtr<uint8_t>) method

Adds new custom xml part.

System::SharedPtr<ICustomXmlPart> Aspose::Slides::CustomXmlPartCollection::Add(System::ArrayPtr<uint8_t> xmlData) override

Arguments

ParameterTypeDescription
xmlDataSystem::ArrayPtr<uint8_t>The xml data of new part to be added.

Return Value

Created custom xml part.

CustomXmlPartCollection::Add(System::SharedPtr<System::IO::Stream>) method

Adds new custom xml part.

System::SharedPtr<ICustomXmlPart> Aspose::Slides::CustomXmlPartCollection::Add(System::SharedPtr<System::IO::Stream> inputStream) override

Arguments

ParameterTypeDescription
inputStreamSystem::SharedPtr<System::IO::Stream>The inputStream with xml data of new part to be added.

Return Value

Created custom xml part.

See Also