CWinCtrlBar

Script: BAR

The control to display a bar .

It can have a caption.

Callbacks arriving at :class:`CWindowBase<CWindowBase>`

Example of use

// get control
CWinCtrlBar    ctrlStart = find<CWinCtrlBar>(BAR_Title);

// click callback
override public void onClick(CWinCtrlBase cCtrl) {
    switch (cCtrl.id) {
      case BAR_Title:
        break;
     }
}