SetValue(Int32,Int32,Object,Boolean,Boolean,Boolean) Method
In This Topic
Sets the
System.Object value for the cell of the specified row and column.
Syntax
'Declaration
Public Overloads Function SetValue( _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Object, _
ByVal As Boolean, _
Optional ByVal As Boolean, _
Optional ByVal As Boolean _
) As Boolean
'Usage
Dim instance As Worksheet
Dim row As Integer
Dim column As Integer
Dim value As Object
Dim notify As Boolean
Dim commitChanged As Boolean
Dim triggerDependencyTree As Boolean
Dim value As Boolean
value = instance.SetValue(row, column, value, notify, commitChanged, triggerDependencyTree)
public bool SetValue(
int ,
int column,
object ,
bool ,
bool ,
bool
)
Parameters
- row
- An integer value indicates the row index of cell.
- column
- An integer value indicates the column index of cell.
- value
- An System.Object value to set
- notify
- commitChanged
- the datasource will invoke the EndEdit to commit the changes
- triggerDependencyTree
Return Value
true
if success, false
otherwise.
See Also