GetCellText メソッド (JTable)

クラス

JTable.

処理

セル テキストを返します。

構文

cellText = table.GetCellText(row, column)
変数 説明
cellText セル テキスト。 String
row 行のインデックス。 The value is zero-based.。 Integer
column 列の名前またはインデックス。 ItemIdentifier

Dim cellText As String = table.GetCellText(1, "Product")
cellText = table.GetCellText(1, 3)