Vcl.ExtCtrls.TCustomControlBar.OnBandInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnBandInfo: TBandInfoEvent read FOnBandInfo write FOnBandInfo;

C++

__property TBandInfoEvent OnBandInfo = {read=FOnBandInfo, write=FOnBandInfo};

Properties

Type Visibility Source Unit Parent
event protected
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TCustomControlBar

Description

Occurs when the control bar adjusts the docking position of a band.

Write code in the OnBandInfo event handler to provide information to the control bar that it can use when arranging its bands. The OnBandInfo event handler has several parameters that can be used to return information about how the band should be positioned, including its size, inset, and number of rows.

OnBandInfo is an event handler of type Vcl.ExtCtrls.TBandInfoEvent.

See Also