Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / GetColumnResizable Method / GetColumnResizable(Int32,SheetArea) Method
The column index.
The sheet area.


In This Topic
    GetColumnResizable(Int32,SheetArea) Method
    In This Topic
    Gets a value that indicates whether the user can resize a specified column in the specified sheet area.
    Syntax
    'Declaration
     
    Public Overloads Function GetColumnResizable( _
       ByVal column As Integer, _
       ByVal sheetArea As SheetArea _
    ) As Boolean
    'Usage
     
    Dim instance As Worksheet
    Dim column As Integer
    Dim sheetArea As SheetArea
    Dim value As Boolean
     
    value = instance.GetColumnResizable(column, sheetArea)
    public bool GetColumnResizable( 
       int column,
       SheetArea sheetArea
    )

    Parameters

    column
    The column index.
    sheetArea
    The sheet area.

    Return Value

    Returns true if the user can resize the specified column; otherwise, false.
    See Also