asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
34 lines (33 loc) • 968 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { NodeLink } from './nodeLink';
import { TableCell } from './tableCell';
import { TableRowFormat } from './tableRowFormat';
export declare const importsMapTableRow: {
NodeLink: typeof NodeLink;
TableCell: typeof TableCell;
TableRowFormat: typeof TableRowFormat;
};
/**
* DTO container with a table row element.
*/
export declare class TableRow extends NodeLink {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the collection of rows.
*/
tableCellList: Array<TableCell>;
/**
* Gets or sets the formatting properties of a row.
*/
rowFormat: TableRowFormat;
constructor(init?: Partial<TableRow>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}