Validates if the straight can be split into two at the passed in point.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 19.0.0.0 (19.2.0.66)
Since:
2017 Subscription Update
Syntax
| C# |
|---|
[ObsoleteAttribute("This method is deprecated in Revit 2019 and will be removed in the next version of Revit. Use 'CanSplitStraight(XYZ)' instead.")]
public bool CanSplitStraight(
Document document,
ElementId partId,
XYZ position
) |
| Visual Basic |
|---|
<ObsoleteAttribute("This method is deprecated in Revit 2019 and will be removed in the next version of Revit. Use 'CanSplitStraight(XYZ)' instead.")> _
Public Function CanSplitStraight ( _
document As Document, _
partId As ElementId, _
position As XYZ _
) As Boolean |
| Visual C++ |
|---|
[ObsoleteAttribute(L"This method is deprecated in Revit 2019 and will be removed in the next version of Revit. Use 'CanSplitStraight(XYZ)' instead.")]
public:
bool CanSplitStraight(
Document^ document,
ElementId^ partId,
XYZ^ position
) |
Return Value
Returns true if valid otherwise false if the straight cannot be split.
Exceptions
See Also