Click or drag to resize

FileCsvDocumentSet Method (Int32, Point3d)

Sets a row from a 3-D point. 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 general ("G") format specifier and the invariant culture.

Namespace:  Rhino.FileIO
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntax
public void Set(
	int row,
	Point3d point
)

Parameters

row
Type: SystemInt32
The zero-based row index (y).
point
Type: Rhino.GeometryPoint3d
The point to store.
Exceptions
ExceptionCondition
InvalidOperationExceptionThrown when ColumnCount is not 3.
ArgumentOutOfRangeExceptionThrown when row is negative.
See Also