WorkspaceApplyCommand Method |
Name | Description | |
---|---|---|
ApplyCommand(ImageCommand) | Applies an ImageCommand to the current image in order to process it. | |
ApplyCommand(ImageCommand, String) | Creates an undo level, then applies an ImageCommand to the current image in order to process
it. |
This example demonstrates how to apply a command in VB.
myWorkspace.ApplyCommand(new BlurGaussian(10))
This example demonstrates how to apply a command in C#.
myWorkspace.ApplyCommand(new BlurGaussian(10));