我有一个名为 tblMainData 的表,其中有几列,其中一些列的宽度为 0 。
我希望将表格中的所有数据( 0 宽度除外)存储到二维数组中。
如何检查特定列是否具有 0 宽度?
答案 0 :(得分:2)
for(int col = 0; col < tblMainData.getColumnCount(); col++)
{
if(tblMainData.getColumn(col).getWidth() == 0)
{
// do something
}
}