IDataGridBandBase.Fixed

Syntax

Fixed: FixedState;

Description

The Fixed property determines the fixed band, in which the object is located.

Example

Executing the example requires a form and the DataGrid component named DataGrid1 on the form. Several bands and columns are created in DataGrid1. The specified example is a handler of the OnBandBaseClick event for the DataGrid1 component.

Sub DataGrid1OnBandBaseClick(Sender: Object; Args: IDataGridBandEventArgs);
Begin
    Args.BandBase.Fixed := FixedState.Left;
End Sub DataGrid1OnBandBaseClick;

When clicking on any band or column, this object is moved to the left fixed band.

See also:

IDataGridBandBase