cellText = table.GetCellText(row, column)
cellText = table.GetCellText(row, column)
Variable | Description |
---|---|
cellText | The cell text. String. |
row | The index of the row. The value is zero-based. Integer. |
column | The name or index of the column. ItemIdentifier. |
VB
Dim cellText As String = table.GetCellText(1, "Product") cellText = table.GetCellText(1, 3)