FileCsvDocumentSet Method (Int32, Int32, Double, String) |
Sets the value of a specific cell to a double-precision number, formatted with the
specified .NET numeric format string and the invariant culture.
Namespace:
Rhino.FileIO
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntaxpublic void Set(
int column,
int row,
double value,
string format
)
Public Sub Set (
column As Integer,
row As Integer,
value As Double,
format As String
)
Parameters
- column
- Type: SystemInt32
The zero-based column index (x). - row
- Type: SystemInt32
The zero-based row index (y). - value
- Type: SystemDouble
The value to store. - format
- Type: SystemString
A standard or custom numeric format string, for example "F2" or "0.###".
See Also