Revit 2025.3 API
CurveIs |
Indicates whether the specified parameter value is within this curve's bounds.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public bool IsInside( double parameter )
Public Function IsInside ( parameter As Double ) As Boolean
public: bool IsInside( double parameter )
member IsInside : parameter : float -> bool
Parameters
- parameter Double
- The raw curve parameter to be evaluated.
Return Value
BooleanTrue if the parameter is within the bounds, otherwise false.
| Exception | Condition |
|---|---|
| ArgumentException | Thrown when the specified parameter is infinite. |
Always returns true if this curve is unbound.
See Also