Nevron .NET Vision
Nevron.Diagram.Layout Namespace / StackMode Enumeration


In This Topic
    StackMode Enumeration
    In This Topic
    Enumerates the modes for stack layouts
    Syntax
    'Declaration
     
    
    Public Enum StackMode 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As StackMode
    public enum StackMode : System.Enum 
    Members
    MemberDescription
    EqualThe stack inflates the size of each object with equal amount of space in order to resolve the available/insufficient area problem
    FirstThe stack inflates the size of the first object in the stack, then the size of the second one and so on until the available/insufficient area problem is ressolved
    LastThe stack inflates the size of the last object in the stack, then the size of the object before it and so on until the available/insufficient area problem is ressolved
    NoneThe stack layout does not attemp to resolve the available/insufficient area problem
    ProportionalThe stack inflates the size each object with amount of space proportional to its size in order to resolve the available/insufficient area problem
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Nevron.Diagram.Layout.StackMode

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also