| PostProcessorChainRemove Method |
Removes the first occurrence of a specific post-processor from 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 bool Remove(
PostProcessor postProcessor
)
Public Function Remove (
postProcessor As PostProcessor
) As Boolean
public:
virtual bool Remove(
PostProcessor^ postProcessor
) sealed
abstract Remove :
postProcessor : PostProcessor -> bool
override Remove :
postProcessor : PostProcessor -> bool
Parameters
- postProcessor
- Type: DigitalRune.Graphics.PostProcessingPostProcessor
The post-processor to remove from the post-processor chain.
Return Value
Type:
Boolean if
postProcessor was successfully removed from the
post-processor chain; otherwise,
. This method also returns
if
postProcessor is not found in the original
post-processor chain.
Implements
ICollectionTRemove(T)See Also