本文整理了Java中org.netbeans.swing.outline.Outline.getColumnCount()
方法的一些代码示例,展示了Outline.getColumnCount()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Outline.getColumnCount()
方法的具体详情如下:
包路径:org.netbeans.swing.outline.Outline
类名称: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();
内容来源于网络,如有侵权,请联系作者删除!