SqlCeUpdatableRecord.SetValue Method
Sets the column at the specified index to the passed-in value.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Syntax
'Declaration
Public Sub SetValue ( _
ordinal As Integer, _
value As Object _
)
'Usage
Dim instance As SqlCeUpdatableRecord
Dim ordinal As Integer
Dim value As Object
instance.SetValue(ordinal, value)
public void SetValue(
int ordinal,
Object value
)
public:
void SetValue(
int ordinal,
Object^ value
)
member SetValue :
ordinal:int *
value:Object -> unit
public function SetValue(
ordinal : int,
value : Object
)
Parameters
- ordinal
Type: System.Int32
The field in which to set the value.
- value
Type: System.Object
The value to set.