asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
44 lines (43 loc) • 1.16 kB
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { LinkElement } from './linkElement';
import { NodeLink } from './nodeLink';
export declare const importsMapSection: {
LinkElement: typeof LinkElement;
NodeLink: typeof NodeLink;
};
/**
* DTO container with a section element.
*/
export declare class Section extends LinkElement {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the list of child nodes.
*/
childNodes: Array<NodeLink>;
/**
* Gets or sets the link to Paragraphs resource.
*/
paragraphs: LinkElement;
/**
* Gets or sets the link to PageSetup resource.
*/
pageSetup: LinkElement;
/**
* Gets or sets the link to HeaderFooters resource.
*/
headerFooters: LinkElement;
/**
* Gets or sets the link to Tables resource.
*/
tables: LinkElement;
constructor(init?: Partial<Section>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}