CompositeDisplayConditionInsert Method (Int32, DisplayCondition) |
Inserts a display condition at the given zero-based index,
shifting existing display conditions.
Namespace:
AGI.Foundation.Graphics
Assembly:
AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 25.2.423.0 (25.2.423.0)
Syntaxpublic void Insert(
int index,
DisplayCondition displayCondition
)
Public Sub Insert (
index As Integer,
displayCondition As DisplayCondition
)
public:
void Insert(
int index,
DisplayCondition^ displayCondition
)
member Insert :
index : int *
displayCondition : DisplayCondition -> unit
Parameters
- index
- Type: SystemInt32
The zero-based index to insert the display condition at. - displayCondition
- Type: AGI.Foundation.GraphicsDisplayCondition
The display condition to insert into the composite.
Exceptions| Exception | Condition |
|---|
| ArgumentNullException | displayCondition is null.
|
| ArgumentOutOfRangeException |
Index is out of range. It must be between 0 and Count.
|
See Also