[]
Gets the cell text for any cell.
public string GetItemText(int rowIndex, int colIndex)
Public Function GetItemText(rowIndex As Integer, colIndex As Integer) As String
| Type | Name | Description |
|---|---|---|
| int | rowIndex | The row index. |
| int | colIndex | The column index. |
| Type | Description |
|---|---|
| string | Returns a string which identifies the cell text. |
This method will get the text for any cell directly, instead of using the Column object.
Gets the cell text for any cell.
public string GetItemText(int rowIndex, string colName)
Public Function GetItemText(rowIndex As Integer, colName As String) As String
| Type | Name | Description |
|---|---|---|
| int | rowIndex | The row index. |
| string | colName | The column name.. |
| Type | Description |
|---|---|
| string | Returns a string which identifies the cell text. |
This method will get the text for any cell directly, instead of using the Column object.