In This Topic
Sets the text in a specified row in the current column.
Syntax
'Declaration
Public Sub SetText( _
ByVal As Integer, _
ByVal As String _
)
'Usage
Dim instance As Column
Dim row As Integer
Dim text As String
instance.SetText(row, text)
public void SetText(
int ,
string
)
Parameters
- row
- The row index.
- text
- The text string for the cell.
Example
This example uses the SetText method.
See Also