Validates curve to be added to the view-specific shape being constructed. Called by addCurve. Expects a valid view normal to be set prior to the call.
This function may be used to pre-validate the geometry being added to avoid addCurve throwing an InvalidArgumentException
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 2015.0.0.0 (2015.0.0.0)
Since:
2015
Syntax
| Visual Basic |
|---|
Public Function ValidateCurve ( _
GCurve As Curve _
) As Boolean |
| Visual C++ |
|---|
public:
bool ValidateCurve(
Curve^ GCurve
) |
Return Value
True is %GCurve% is acceptable as a part of view-specific shape representation being built.
Validation conditions depend on the type of view for which the shape representation is intended.
For plan views, a curve is expected to be planar and non-degenerate (e.g., NOT a circle of zero radius).
Exceptions
See Also