Feature |
| Exception | Condition |
|---|---|
| ArgumentException | Thrown when: - The specified point is invalid or too close to existing endpoints - The feature line is closed (closed feature lines cannot be extended) - The extension cannot be performed due to geometric constraints |
1// Extend feature line from the end point to a specific coordinate 2Point3d targetPoint = new Point3d(100.0, 50.0, 0.0); 3featureLine.ExtendWithFixedLine(false, targetPoint);