export default class RowData extends GroupData { /** * @inheritdoc */ addChild(displayObject: any): void; /** * @inheritdoc */ addChildAt(displayObject: any, index: any): void; /** * Sets an element's column index or position with respect to the total number * of columns within a table, grid, or treegrid. * @access public * @param {Number} val - Positive number */ set colIndex(arg: number); /** * Gives an element's column index or position with respect to the total number of * columns within a table, grid, or treegrid. * @access public * @returns {Number} - Positive number */ get colIndex(): number; /** * Sets an element's row index or position with respect to the total number of * rows within a table, grid, or treegrid. * @access public * @param {Number} val - Positive number */ set rowIndex(arg: number); /** * Gives an element's row index or position with respect to the total number of rows * within a table, grid, or treegrid. * @access public * @returns {Number} - Positive number */ get rowIndex(): number; /** * Sets an element's row index or position with respect to the total number of rows * within a table, grid, or treegrid. * @access public * @param {Number} val - Positive number */ set level(arg: number); /** * Gives an element's row index or position with respect to the total number of rows * within a table, grid, or treegrid. * @access public * @returns {Number} - Positive number */ get level(): number; } import GroupData from "./GroupData";