Vcl.ExtCtrls.TCustomCategoryPanelGroup.ChangeScale

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ChangeScale(M, D: Integer; isDpiChange: Boolean); override;

C++

DYNAMIC void __fastcall ChangeScale(int M, int D, bool isDpiChange)/* overload */;
DYNAMIC inline void __fastcall  ChangeScale(int M, int D){ Vcl::Controls::TControl::ChangeScale(M, D); }

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TCustomCategoryPanelGroup

Description

Resizes the scrolling windowed control by a specific ratio.

Vcl.ExtCtrls.TCustomCategoryPanelGroup.ChangeScale inherits from Vcl.Forms.TScrollingWinControl.ChangeScale. All content below this line refers to Vcl.Forms.TScrollingWinControl.ChangeScale.

Resizes the scrolling windowed control by a specific ratio.

Use ChangeScale to resize the scrolling windowed control by a specific ratio.

M is the multiplier of the ratio; D is the divisor of the ratio. For example, to resize the scrolling windowed control to four-fifths of its current size, set M to four and D to five.

See Also