ObjectTableTryFindPoint Method |
Finds the location of a point, if a point exists in the document.
Namespace:
Rhino.DocObjects.Tables
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax public bool TryFindPoint(
Guid id,
out Point3d point
)
Public Function TryFindPoint (
id As Guid,
<OutAttribute> ByRef point As Point3d
) As Boolean
Parameters
- id
- Type: SystemGuid
ID of point object to search for. - point
- Type: Rhino.GeometryPoint3d
The point will be passed here.
Return Value
Type:
Booleantrue on success; false if point was not found, id represented another geometry type, or on error.
See Also