Click or drag to resize

WorkspaceApplyCommand Method

Examples

This example demonstrates how to apply a command in VB.

Apply a Command (Visual Basic)
myWorkspace.ApplyCommand(new BlurGaussian(10))

This example demonstrates how to apply a command in C#.

Apply a Command (C#)
myWorkspace.ApplyCommand(new BlurGaussian(10));
Overload List
  NameDescription
Public methodCode exampleApplyCommand(ImageCommand)
Applies an ImageCommand to the current image in order to process it.
Public methodApplyCommand(ImageCommand, String)
Creates an undo level, then applies an ImageCommand to the current image in order to process it.
Top
Examples

This example demonstrates how to apply a command in VB.

Apply a Command (Visual Basic)
myWorkspace.ApplyCommand(new BlurGaussian(10))

This example demonstrates how to apply a command in C#.

Apply a Command (C#)
myWorkspace.ApplyCommand(new BlurGaussian(10));
See Also