FileCsvDocumentTryGetPoint Method |
Namespace:
Rhino.FileIO
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntaxpublic bool TryGetPoint(
int row,
out Point3d point
)
Public Function TryGetPoint (
row As Integer,
<OutAttribute> ByRef point As Point3d
) As Boolean
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:
Booleantrue if the document has 3 columns and the row parsed as a point; otherwise false.
See Also