| PostProcessorChainInsert Method |
Inserts a post-processor into the post-processor chain at the specified index.
Namespace: DigitalRune.Graphics.PostProcessingAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public void Insert(
int index,
PostProcessor postProcessor
)
Public Sub Insert (
index As Integer,
postProcessor As PostProcessor
)
public:
virtual void Insert(
int index,
PostProcessor^ postProcessor
) sealed
abstract Insert :
index : int *
postProcessor : PostProcessor -> unit
override Insert :
index : int *
postProcessor : PostProcessor -> unit
Parameters
- index
- Type: SystemInt32
The zero-based index at which postProcessor should be inserted.
- postProcessor
- Type: DigitalRune.Graphics.PostProcessingPostProcessor
The post-processor to insert into the post-processor chain.
Implements
IListTInsert(Int32, T)Exceptions See Also