export default class TableData extends SectionData { /** * @inheritdoc */ addChild(displayObject: any): void; /** * @inheritdoc */ addChildAt(displayObject: any, index: any): void; /** * Sets the total number of rows in a table, grid or treegrid. * -1 if the total number of rows is unknown and also indicates that the value should * not be calculated by the user agent. * @access public * @param {Number} val - Positive number , -1 if its unknown. */ set rowCount(arg: number); /** * Gives the total number of rows in a table, grid or treegrid. * -1 if the total number of rows is unknown and also indicates that the value should not * be calculated by the user agent. * @access public * @returns {Number} - Positive number , -1 if its unknown. */ get rowCount(): number; /** * Sets the total number of columns in a table, grid or treegrid. * -1 if the total number of columns is unknown and also indicates that the value should * not be calculated by the user agent. * @access public * @param {Number} val - Positive number , -1 if its unknown. */ set colCount(arg: number); /** * Gives the total number of columns in a table, grid or treegrid. * -1 if the total number of columns is unknown and also indicates that the value should not * be calculated by the user agent. * @access public * @returns {Number} - Positive number , -1 if its unknown. */ get colCount(): number; } import SectionData from "./SectionData";