| PostProcessorChainIndexOf Method (PostProcessor) |
Determines the index of a specific post-processor in the post-processor chain.
Namespace: DigitalRune.Graphics.PostProcessingAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public int IndexOf(
PostProcessor postProcessor
)
Public Function IndexOf (
postProcessor As PostProcessor
) As Integer
public:
virtual int IndexOf(
PostProcessor^ postProcessor
) sealed
abstract IndexOf :
postProcessor : PostProcessor -> int
override IndexOf :
postProcessor : PostProcessor -> int
Parameters
- postProcessor
- Type: DigitalRune.Graphics.PostProcessingPostProcessor
The post-processor to locate in the post-processor chain.
Return Value
Type:
Int32
The index of
postProcessor if found in the post-processor chain;
otherwise, -1.
Implements
IListTIndexOf(T)See Also