Determine if this Outline contains the specified point to within a tolerance.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 23.0.0.0 (23.1.0.0)
Since:
2011
Syntax
C# |
---|
public bool Contains(
XYZ point,
double tolerance
) |
Visual Basic |
---|
Public Function Contains ( _
point As XYZ, _
tolerance As Double _
) As Boolean |
Visual C++ |
---|
public:
bool Contains(
XYZ^ point,
double tolerance
) |
Parameters
- point
- Type: Autodesk.Revit.DB..::..XYZ
The point to test for containment.
- tolerance
- Type: System..::..Double
The tolerance to use when determining whether the point is contained. Defaults to zero.
Return Value
True if this outline contains the given point, or false otherwise.
Remarks
Exceptions
See Also