DashboardLayout for WinForms | ComponentOne
C1.Win.Layout Namespace / C1DashboardLayout Class / LayoutType Property

In This Topic
    LayoutType Property (C1DashboardLayout)
    In This Topic
    Gets or sets current LayoutType layout type.
    Syntax
    'Declaration
     
    
    Public Property LayoutType As LayoutType
    public LayoutType LayoutType {get; set;}
    Example
    //Initialize the DashboardLayout Control
    C1DashboardLayout c1DashboardLayout1 = new C1.Win.Layout.C1DashboardLayout();       
    //Setting the type of layout through C1DashboardLayout's LayoutType property.
    c1DashboardLayout1.LayoutType = C1.Win.Layout.LayoutType.Flow;
    
    See Also