Vcl.Forms.TCustomForm.OnAfterMonitorDpiChanged

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnAfterMonitorDpiChanged: TMonitorDpiChangedEvent read FOnAfterMonitorDpiChanged write FOnAfterMonitorDpiChanged stored IsForm;

C++

__property TMonitorDpiChangedEvent OnAfterMonitorDpiChanged = {read=FOnAfterMonitorDpiChanged, write=FOnAfterMonitorDpiChanged, stored=IsForm};

Properties

Type Visibility Source Unit Parent
event protected
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TCustomForm

Description

Occurs immediately after the user changes the monitor DPI.

Use OnAfterMonitorDpiChanged to make any adjustments after the monitor DPI changes.

To make adjustments before the monitor DPI changes, use OnBeforeMonitorDpiChanged.

See Also