org.eclipse.jface.util.Geometry.isHorizontal()方法的使用及代码示例

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

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

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 {

相关文章