Search
GlassEffect Class
Remarks See Also
 





Represents a glass-like visual effect.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public sealed class GlassEffect : NodeEffect

Visual Basic  Copy Code

Public NotInheritable Class GlassEffect
    Inherits NodeEffect

 Remarks

This 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:

 Example

The 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 Hierarchy

System.Object
    MindFusion.Diagramming.NodeEffect
        MindFusion.Diagramming.GlassEffect

 See Also