Click or drag to resize

FileCsvDocumentTryGetPoint Method

Retrieves a row as a 3-D point. This succeeds only when ColumnCount is 3: the row's three fields are joined and passed to TryParse(String, Point3d).

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

Parameters

row
Type: SystemInt32
The zero-based row index (y).
point
Type: Rhino.GeometryPoint3d
The parsed point, or Unset if the row could not be parsed.

Return Value

Type: Boolean
true if the document has 3 columns and the row parsed as a point; otherwise false.
See Also