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

x33g5p2x  于2022-01-29 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(217)

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

Table.setLocation介绍

暂无

代码示例

代码示例来源:origin: com.diffplug.durian/durian-swt

  1. /** Sets the vertical offset of the table. */
  2. protected void setOffset(int offset) {
  3. // save the double so that getOffset() is exact
  4. if (this.offset != offset) {
  5. this.offset = offset;
  6. table.setLocation(0, offset);
  7. }
  8. }

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

  1. fContextSelectorTable.setLocation(1, 1);
  2. GridData gd= new GridData(GridData.FILL_BOTH);
  3. gd.heightHint= fContextSelectorTable.getItemHeight() * 10;

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

  1. fContextSelectorTable.setLocation(1, 1);
  2. GridData gd= new GridData(GridData.FILL_BOTH);
  3. gd.heightHint= fContextSelectorTable.getItemHeight() * 10;

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

  1. TableOwnerDrawSupport.install(fProposalTable);
  2. fProposalTable.setLocation(0, 0);
  3. if (fAdditionalInfoController != null)
  4. fAdditionalInfoController.setSizeConstraints(50, 10, true, false);

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

  1. fContextSelectorTable.setLocation(1, 1);
  2. GridData gd= new GridData(GridData.FILL_BOTH);
  3. gd.heightHint= fContextSelectorTable.getItemHeight() * 10;

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

  1. TableOwnerDrawSupport.install(fProposalTable);
  2. fProposalTable.setLocation(0, 0);
  3. if (fAdditionalInfoController != null)
  4. fAdditionalInfoController.setSizeConstraints(50, 10, true, true);

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

  1. TableOwnerDrawSupport.install(fProposalTable);
  2. fProposalTable.setLocation(0, 0);
  3. if (fAdditionalInfoController != null)
  4. fAdditionalInfoController.setSizeConstraints(50, 10, true, true);

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

  1. TableOwnerDrawSupport.install(fProposalTable);
  2. fProposalTable.setLocation(0, 0);
  3. if (fAdditionalInfoController != null)
  4. fAdditionalInfoController.setSizeConstraints(50, 10, true, false);

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

  1. fContextSelectorTable.setLocation(1, 1);
  2. GridData gd= new GridData(GridData.FILL_BOTH);
  3. gd.heightHint= fContextSelectorTable.getItemHeight() * 10;

相关文章

Table类方法