'Declaration
Overloads Function SetValue( _ ByVal row As Integer, _ ByVal column As Integer, _ ByVal value As String _ ) As Boolean
'Usage
Dim instance As IWorksheet Dim row As Integer Dim column As Integer Dim value As String Dim value As Boolean value = instance.SetValue(row, column, value)
Parameters
- row
- An integer value indicates the row index of cell.
- column
- An integer value indicates the column index of cell.
- value
- An System.String value to set
Return Value
true
if success, false
otherwise.