com.vaadin.ui.Grid.getBodyRowHeight()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(0.8k)|赞(0)|评价(0)|浏览(149)

本文整理了Java中com.vaadin.ui.Grid.getBodyRowHeight()方法的一些代码示例,展示了Grid.getBodyRowHeight()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Grid.getBodyRowHeight()方法的具体详情如下:
包路径:com.vaadin.ui.Grid
类名称:Grid
方法名:getBodyRowHeight

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();
}

相关文章

Grid类方法