Revit 2025.3 API
Rebar |
Identifies if a given RebarContainerItem is hidden in this view.
Namespace: Autodesk.Revit.DB.Structure
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public bool IsItemHidden( View view, int itemIndex )
Public Function IsItemHidden ( view As View, itemIndex As Integer ) As Boolean
public: bool IsItemHidden( View^ view, int itemIndex )
member IsItemHidden : view : View * itemIndex : int -> bool
Parameters
- view View
- The view.
- itemIndex Int32
- Item index in the Rebar Container.
Return Value
BooleanTrue if the RebarContainerItem is hidden in this view, false otherwise.
| Exception | Condition |
|---|---|
| ArgumentException | The item index is either less than 0 or graeter than or equal to number of items in this Rebar Container element. |
| ArgumentNullException | A non-optional argument was null |
See Also