UNPKG

asposewordscloud

Version:
38 lines (37 loc) 1.45 kB
import { AttributeInfo } from '../internal/attributeInfo'; import { SaveOptionsData } from './saveOptionsData'; export declare const importsMapXamlFlowSaveOptionsData: { SaveOptionsData: typeof SaveOptionsData; }; /** * Container class for xaml flow save options. */ export declare class XamlFlowSaveOptionsData extends SaveOptionsData { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the physical folder where images are saved when exporting. */ imagesFolder: string; /** * Gets or sets the name of the folder used to construct image URIs. */ imagesFolderAlias: string; /** * Gets or sets the flag that indicates whether backslash characters should be replaced with yen signs. * Default value is false. * By default, Aspose.Words mimics MS Word's behavior and doesn't replace backslash characters with yen signs in * generated HTML documents. However, previous versions of Aspose.Words performed such replacements in certain * scenarios. This flag enables backward compatibility with previous versions of Aspose.Words. */ replaceBackslashWithYenSign: boolean; constructor(init?: Partial<XamlFlowSaveOptionsData>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }