Revit 2025 API
Direct |
Validates view-specific shape to be stored in a DirectShape. Expects a non-default view type.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.0.0.0 (25.0.0.0)
Syntax
public bool IsValidShape( IList<GeometryObject> shape, DirectShapeTargetViewType viewType )
Public Function IsValidShape ( shape As IList(Of GeometryObject), viewType As DirectShapeTargetViewType ) As Boolean
public: bool IsValidShape( IList<GeometryObject^>^ shape, DirectShapeTargetViewType viewType )
member IsValidShape : shape : IList<GeometryObject> * viewType : DirectShapeTargetViewType -> bool
Parameters
- shape IListGeometryObject
- Shape of this object expressed as a collection of GeometryObjects. For viewType = DirectShapeTargetViewType::Default, the supported types of GeometryObjects are: Solid, Mesh, GeometryInstance, Point and Curve. For viewType = DirectShapeTargetViewType::Plan, the supported types of GeometryObjects are: Point and Curve.
- viewType DirectShapeTargetViewType
- The view type this shape is intended for.
Return Value
BooleanTrue if the supplied shape passes the validation criteria.
| Exception | Condition |
|---|---|
| ArgumentNullException | A non-optional argument was null |
| ArgumentOutOfRangeException | A value passed for an enumeration argument is not a member of that enumeration |
See Also