org.eclipse.swt.widgets.Scrollable.getScrollbarsMode()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(157)

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

Scrollable.getScrollbarsMode介绍

[英]Returns the mode of the receiver's scrollbars. This will be bitwise OR of one or more of the constants defined in class SWT.

  • SWT.SCROLLBAR_OVERLAY - if receiver uses overlay scrollbars
  • SWT.NONE - otherwise
    [中]返回接收器滚动条的模式。这将是按位或类[$0$]中定义的一个或多个常量。
    *[$1$]-如果接收器使用覆盖滚动条
    *[$2$]-否则

代码示例

代码示例来源:origin: org.eclipse.platform/org.eclipse.jface

if (verticalBar != null && scrollable.getScrollbarsMode() == SWT.NONE && !verticalBar.isVisible()) {
  fixedWidth += verticalBar.getSize().x;

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jface

if (verticalBar != null && scrollable.getScrollbarsMode() == SWT.NONE && !verticalBar.isVisible()) {
  fixedWidth += verticalBar.getSize().x;

相关文章

Scrollable类方法