Vcl.Forms.TCustomForm.OnBeforeMonitorDpiChanged

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnBeforeMonitorDpiChanged: TMonitorDpiChangedEvent read FOnBeforeMonitorDpiChanged write FOnBeforeMonitorDpiChanged stored IsForm;

C++

__property TMonitorDpiChangedEvent OnBeforeMonitorDpiChanged = {read=FOnBeforeMonitorDpiChanged, write=FOnBeforeMonitorDpiChanged, stored=IsForm};

Properties

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

Description

Occurs immediately before the user changes the monitor DPI.

Use OnBeforeMonitorDpiChanged to make any adjustments before the monitor DPI changes.

To make adjustments after the monitor DPI changes, use OnAfterMonitorDpiChanged.

See Also