FileCsvDocumentSet Method (Int32, Point3d, String) |
Sets a row from a 3-D point, using the specified .NET numeric format string. This is
only valid when
ColumnCount is 3: the point's X, Y, and Z are written to
columns 0, 1, and 2 with the invariant culture.
Namespace:
Rhino.FileIO
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntaxpublic void Set(
int row,
Point3d point,
string format
)
Public Sub Set (
row As Integer,
point As Point3d,
format As String
)
Parameters
- row
- Type: SystemInt32
The zero-based row index (y). - point
- Type: Rhino.GeometryPoint3d
The point to store. - format
- Type: SystemString
A standard or custom numeric format string, for example "F2" or "0.###".
Exceptions| Exception | Condition |
|---|
| InvalidOperationException | Thrown when ColumnCount is not 3. |
| ArgumentOutOfRangeException | Thrown when row is negative. |
See Also