Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / GcComboBox Class / CanUserResizeColumns Property


In This Topic
    CanUserResizeColumns Property (GcComboBox)
    In This Topic
    Gets or sets a value that indicates whether the user can adjust column widths using the mouse. This is a dependency property.
    Syntax
    'Declaration
     
    Public Property CanUserResizeColumns As Boolean
    'Usage
     
    Dim instance As GcComboBox
    Dim value As Boolean
     
    instance.CanUserResizeColumns = value
     
    value = instance.CanUserResizeColumns
    public bool CanUserResizeColumns {get; set;}

    Property Value

    true if the user can resize columns; otherwise, false. The default is true.
    Remarks
    You can set this behavior for individual columns by setting the ListColumn.CanUserResize property. If the ListColumn.CanUserResize property and the CanUserResizeColumns property are both set, a value of false will take precedence over a value of true.
    See Also