Represents a glass-like visual effect.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public sealed class GlassEffect : NodeEffect |
Visual Basic
Copy Code
|
|---|
Public NotInheritable Class GlassEffect |
RemarksThis effect can be applied to the nodes in a Diagram by adding an instance of this class to the NodeEffects collection.
The following image illustrates the Glass effect applied to an item as well as how the different properties affect the output:

ExampleThe following example demonstrates how to apply glass effect to the nodes of an existing diagram.
C#
Copy Code
|
|---|
diagram.NodeEffects.Add(new GlassEffect()); |
Visual Basic
Copy Code
|
|---|
diagram.NodeEffects.Add(New GlassEffect()) |
Inheritance HierarchySystem.Object![]()
MindFusion.Diagramming.NodeEffect
MindFusion.Diagramming.GlassEffect
See Also