asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
25 lines (24 loc) • 991 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapListUpdate: {};
/**
* Update document properties if document list.
*/
export declare class ListUpdate implements ModelInterface {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets a value indicating whether list should be restarted at each section. The default value is false.
* This option is supported only in RTF, DOC and DOCX document formats. This option will be written to DOCX only if Aspose.Words.Saving.OoxmlCompliance is higher than Aspose.Words.Saving.OoxmlCompliance.Ecma376_2006.
*/
isRestartAtEachSection: boolean;
constructor(init?: Partial<ListUpdate>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}