Click or drag to resize

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
Syntax
public void Set(
	int row,
	Point3d point,
	string format
)

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
ExceptionCondition
InvalidOperationExceptionThrown when ColumnCount is not 3.
ArgumentOutOfRangeExceptionThrown when row is negative.
See Also