本文整理了Java中org.eclipse.jface.util.Geometry.isHorizontal()
方法的一些代码示例,展示了Geometry.isHorizontal()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Geometry.isHorizontal()
方法的具体详情如下:
包路径:org.eclipse.jface.util.Geometry
类名称:Geometry
方法名:isHorizontal
[英]Returns true iff the given SWT side constant corresponds to a horizontal side of a rectangle. That is, returns true for the top and bottom but false for the left and right.
[中]当给定的SWT边常量对应于矩形的水平边时,返回true。也就是说,对于顶部和底部返回true,而对于左侧和右侧返回false。
代码示例来源:origin: org.eclipse.platform/org.eclipse.jface
toExtrude.width, toExtrude.height);
if (!isHorizontal(orientation)) {
bounds.width = size;
} else {
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jface
toExtrude.width, toExtrude.height);
if (!isHorizontal(orientation)) {
bounds.width = size;
} else {
代码示例来源:origin: org.eclipse.rap/org.eclipse.rap.jface
toExtrude.width, toExtrude.height);
if (!isHorizontal(orientation)) {
bounds.width = size;
} else {
内容来源于网络,如有侵权,请联系作者删除!