Vcl.Controls.TControl.ScalingFlags

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ScalingFlags: TScalingFlags read FScalingFlags write FScalingFlags;

C++

__property TScalingFlags ScalingFlags = {read=FScalingFlags, write=FScalingFlags, nodefault};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TControl

Description

Reflects which attributes of the control have been scaled.

ScalingFlags is an internal set of flags used primarily in scaling inherited forms and their controls. Applications should not use this property without a serious need.

These are the flags and their meanings:



Flag Meaning

sfLeft

Left side of control not yet scaled

sfTop

Top of control not yet scaled

sfWidth

Width of control not yet scaled

sfHeight

Height of control not yet scaled

sfFont

Font of control not yet scaled

sfDesignSize

Design-time dimensions of control not yet scaled



See Also