IsCellEditable メソッド (JTable)

クラス

JTable.

処理

指定したセルが編集可能な場合に true を返します。

構文

cellEditable = table.IsCellEditable(row, column)
変数 説明
cellEditable セルが編集可能な場合に true、それ以外は false。 Boolean
row 行のインデックス。 The value is zero-based.。 Integer
column 列の名前またはインデックス。 ItemIdentifier

Dim isCellEditable As Boolean = table.IsCellEditable(1, "Street")
isCellEditable = table.IsCellEditable(1, 4)