Skip to main content

How to Change the Height of the Ribbon Form's Title in Code

The following example demonstrates how to change the Ribbon Form title bar’s height programmatically:

// ...
uses
// ...
  dxRibbonForm;
// ...
  TRibbonDemoMainForm = class(TdxRibbonForm)
  public
    function GetCaptionHeightDelta(AHasQuickAccessToolbar: Boolean): Integer; override;
// ...
implementation
// ...
function TRibbonDemoMainForm.GetCaptionHeightDelta(
  AHasQuickAccessToolbar: Boolean): Integer;
begin
  Result := 0;
// indicate that the Ribbon Form's title bar must be 2 pixels shorter, if the Ribbon Quick Access Toolbar is located above the Ribbon
  if AHasQuickAccessToolbar then
    Result := -2;
end;
See Also