TabSheetMeasures.calcRowsHeight

Syntax

calcRowsHeight(startRowIndex: Number, endRowIndex: Number, action: function, context: Object, reverseCalc: Boolean);

Parameters

startRowIndex. Index of the row corresponding to range start.

endRowIndex. Index of the row corresponding to range end.

action. Function executed at each iteration of rows' total height calculation. This is an optional parameter, by default it is set to Null.

context. Context from which the method is called. This is an optional parameter, by default it equals to the current context of this.

reverseCalc. Characteristic indicating direction of iteration through rows. If the parameter is set to True, method iterates starting from the range end to its start, if the parameter is set to False, iteration moves from start to the end of range. This is an optional parameter, by default it is set to False.

Description

The calcRowsHeight method calculates value of total height for table rows within specified range.

Comments

This method returns a Number type value.

Example

The example of use is given on the page with description of the TabSheetMeasures.calcColumnsWidth method.

Seebsp;also:

TabSheetMeasures