本文整理了Java中com.vaadin.ui.Grid.getBodyRowHeight()
方法的一些代码示例,展示了Grid.getBodyRowHeight()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Grid.getBodyRowHeight()
方法的具体详情如下:
包路径:com.vaadin.ui.Grid
类名称:Grid
方法名:getBodyRowHeight
[英]Returns the current body row height. -1 if row height is in automatic calculation mode.
[中]返回当前正文行高度-1如果行高处于自动计算模式。
代码示例来源:origin: com.vaadin/vaadin-server
/**
* Returns the current body row height.-1 if row height is in automatic
* calculation mode.
*
* @see #getBodyRowHeight()
* @see #getHeaderRowHeight()
* @see #getFooterRowHeight()
*
* @return body row height
* @deprecated replaced by three separate row height controls
*/
@Deprecated
public double getRowHeight() {
return getBodyRowHeight();
}
代码示例来源:origin: com.haulmont.cuba/cuba-web
@Override
public double getBodyRowHeight() {
return component.getBodyRowHeight();
}
内容来源于网络,如有侵权,请联系作者删除!