Represents an effect that smooths the shadow of nodes. This effect does nothing if shadows are not visible.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
C# Copy Code |
---|
public sealed class SmoothShadowEffect : NodeEffect |
Visual Basic Copy Code |
---|
Public NotInheritable Class SmoothShadowEffect |
This effect can be applied to the nodes in a Diagram by adding an instance of this class to the NodeEffects collection. In addition, this effect will be active only when the Diagram.EffectsProvider property is set to an object implementing the GenerateShadow method of the IEffectsProvider interface.
The following image illustrates the Shadow effect applied to a rectangular node:
The following example demonstrates how to apply smooth shadow effect to the nodes of an existing diagram.
C# Copy Code |
---|
diagram.NodeEffects.Add(new SmoothShadowEffect()); |
Visual Basic Copy Code |
---|
diagram.NodeEffects.Add(New SmoothShadowEffect()) |
System.Object
MindFusion.Diagramming.NodeEffect
MindFusion.Diagramming.SmoothShadowEffect
MindFusion.Diagramming Developer's Guide | © 2024 MindFusion |