org.netbeans.swing.outline.Outline.getColumnCount()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(142)

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

Outline.getColumnCount介绍

暂无

代码示例

代码示例来源:origin: stackoverflow.com

public void actionPerformed(ActionEvent e) {
  final Outline outline = ov.getOutline();
  int cols = outline.getColumnCount();
  int rows = outline.getRowCount();
  for (int i = 0; i < rows; i++) {
    for (int j = 0; j < cols; j++) {
      System.out.print(outline.getValueAt(i, j) + ", ");
    }
    System.out.println();
  }
}

代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-mercurial

@Override
  public void run() {
    if (getOutline().getColumnCount() == 4) {
      int width = getWidth();
      getOutline().getColumnModel().getColumn(0).setPreferredWidth(width * 25 / 100);
      getOutline().getColumnModel().getColumn(1).setPreferredWidth(width * 15 / 100);
      getOutline().getColumnModel().getColumn(2).setPreferredWidth(width * 10 / 100);
      getOutline().getColumnModel().getColumn(3).setPreferredWidth(width * 50 / 100);
    }
  }
});

代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-dlight-visualizers

int columnCount = outline.getColumnCount();

相关文章