UNPKG

asposewordscloud

Version:
30 lines (29 loc) 1.05 kB
import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapStructuredDocumentTagListItem: {}; /** * DTO container with a SdtListItem for StructuredDocumentTag. */ export declare class StructuredDocumentTagListItem implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the text to display in the run content in place of the Aspose.Words.Markup.SdtListItem.Value attribute contents for this list item. * Cannot be null and cannot be an empty string. */ displayText: string; /** * Gets or sets the value of this list item. * Cannot be null and cannot be an empty string. */ value: string; constructor(init?: Partial<StructuredDocumentTagListItem>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }