Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / LayoutManager Class / SetColumnResizable Method / SetColumnResizable(Int32,Int32,Boolean) Method
An integer value indicates the start column index
An integer value indicates the end column index
A boolean value indicates whether columns are resizable


In This Topic
    SetColumnResizable(Int32,Int32,Boolean) Method
    In This Topic
    Sets the resizable flag of a range of columns
    Syntax
    'Declaration
     
    
    Public Overloads Sub SetColumnResizable( _
       ByVal column As Integer, _
       ByVal column2 As Integer, _
       ByVal value As Boolean _
    ) 
    'Usage
     
    
    Dim instance As LayoutManager
    Dim column As Integer
    Dim column2 As Integer
    Dim value As Boolean
     
    instance.SetColumnResizable(column, column2, value)
    public void SetColumnResizable( 
       int column,
       int column2,
       bool value
    )

    Parameters

    column
    An integer value indicates the start column index
    column2
    An integer value indicates the end column index
    value
    A boolean value indicates whether columns are resizable
    See Also