*
* @param rowHeight
* The height of a row in pixels or -1 for automatic calculation
- * @since 8.1.2
+ * @since 8.2
*/
public void setBodyRowHeight(double rowHeight) {
getState().bodyRowHeight = rowHeight;
*
* @param rowHeight
* The height of a row in pixels or -1 for automatic calculation
- * @since 8.1.2
+ * @since 8.2
*/
public void setHeaderRowHeight(double rowHeight) {
getState().headerRowHeight = rowHeight;
*
* @param rowHeight
* The height of a row in pixels or -1 for automatic calculation
- * @since 8.1.2
+ * @since 8.2
*/
public void setFooterRowHeight(double rowHeight) {
getState().footerRowHeight = rowHeight;
* calculation mode.
*
* @return body row height
- * @since 8.1.2
+ * @since 8.2
*/
public double getBodyRowHeight() {
return getState(false).bodyRowHeight;
* calculation mode.
*
* @return header row height
- * @since 8.1.2
+ * @since 8.2
*/
public double getHeaderRowHeight() {
return getState(false).headerRowHeight;
* calculation mode.
*
* @return footer row height
- * @since 8.1.2
+ * @since 8.2
*/
public double getFooterRowHeight() {
return getState(false).footerRowHeight;
* Explicit body row height in pixels for grid rows, or -1 to calculate
* automatically based on the theme.
*
- * @since 8.1.2
+ * @since 8.2
*/
public double bodyRowHeight = -1;
* Explicit body row height in pixels for grid rows, or -1 to calculate
* automatically based on the theme.
*
- * @since 8.1.2
+ * @since 8.2
*/
public double headerRowHeight = -1;
* Explicit body row height in pixels for grid rows, or -1 to calculate
* automatically based on the theme.
*
- * @since 8.1.2
+ * @since 8.2
*/
public double footerRowHeight = -1;
}