asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
31 lines (30 loc) • 1.21 kB
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapListFormatUpdate: {};
/**
* Paragraph list format element for update.
*/
export declare class ListFormatUpdate implements ModelInterface {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the list level number (0 to 8) for the paragraph.
* In Word documents, lists may consist of 1 or 9 levels, numbered 0 to 8. Has effect only when the Aspose.Words.ListFormat.List property is set to reference a valid list. Aspose.Words.ListFormat.List.
*/
listLevelNumber: number;
/**
* Gets or sets the list id of this paragraph.
* The list that is being assigned to this property must belong to the current document.
* The list that is being assigned to this property must not be a list style definition.
*/
listId: number;
constructor(init?: Partial<ListFormatUpdate>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}