Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / SetColumnSizeable Method
Column index
Whether to allow users to resize columns
Example


In This Topic
    SetColumnSizeable Method
    In This Topic
    Sets whether users can resize individual columns.
    Syntax
    'Declaration
     
    
    Public Sub SetColumnSizeable( _
       ByVal column As Integer, _
       ByVal sizeable As Boolean _
    ) 
    'Usage
     
    
    Dim instance As SheetView
    Dim column As Integer
    Dim sizeable As Boolean
     
    instance.SetColumnSizeable(column, sizeable)
    public void SetColumnSizeable( 
       int column,
       bool sizeable
    )

    Parameters

    column
    Column index
    sizeable
    Whether to allow users to resize columns
    Remarks

    Set the sizeable parameter to true if you want to let the user resize the specified column.

    To see whether users can resize a column, use the GetColumnSizeable method.

    To specify whether users can resize a specified row, use the SetRowSizeable method.

    Example
    This example illustrates the use of this member by returning whether the specified column can be resized.
    See Also