Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets the column at the specified index to the passed-in float value.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Syntax
'Declaration
Public Sub SetFloat ( _
ordinal As Integer, _
value As Single _
)
'Usage
Dim instance As SqlCeUpdatableRecord
Dim ordinal As Integer
Dim value As Single
instance.SetFloat(ordinal, value)
public void SetFloat(
int ordinal,
float value
)
public:
void SetFloat(
int ordinal,
float value
)
member SetFloat :
ordinal:int *
value:float32 -> unit
public function SetFloat(
ordinal : int,
value : float
)
Parameters
- ordinal
Type: System.Int32
The field in which to set the value.
- value
Type: System.Single
The value to set.