Skip to main content
A newer version of this page is available. .

BandedGridView.CanResizeBand(GridBand) Method

Indicates whether the specified band can be resized by end-users.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public virtual bool CanResizeBand(
    GridBand band
)

Parameters

Name Type Description
band GridBand

A GridBand object representing the inspected band.

Returns

Type Description
Boolean

true if end-users can resize the specified band; otherwise, false.

Remarks

The method’s return value depends on the band’s OptionsBand.AllowSize option state. The options specify whether end-users can drag the band’s right edge to resize the band. If the option is enabled, the method returns true. Otherwise, false is returned.

This method supports the grid’s internal infrastructure and is not intended to be called from your code.

See Also