Aspose::Words::Saving::XamlFlowSaveOptions::get_ImagesFolderAlias method

XamlFlowSaveOptions::get_ImagesFolderAlias method

Specifies the name of the folder used to construct image URIs written into an XAML document. Default is an empty string.

System::String Aspose::Words::Saving::XamlFlowSaveOptions::get_ImagesFolderAlias() const

Remarks

When you save a Document in XAML format, Aspose.Words needs to save all images embedded in the document as standalone files. ImagesFolder allows you to specify where the images will be saved and ImagesFolderAlias allows to specify how the image URIs will be constructed.

If ImagesFolderAlias is not an empty string, then the image URI written to XAML will be ImagesFolderAlias + .

If ImagesFolderAlias is an empty string, then the image URI written to XAML will be ImagesFolder + .

If ImagesFolderAlias is set to ‘.’ (dot), then the image file name will be written to XAML without path regardless of other options.

See Also