FMX.Types.TControlSize.SetSizeWithoutNotification

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetSizeWithoutNotification(const Value: TSizeF);

C++

void __fastcall SetSizeWithoutNotification(const System::Types::TSizeF &Value);

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Types.pas
FMX.Types.hpp
FMX.Types TControlSize

Description

Sets the Size property to the height and width values of TSizeF and the PlatformDefault property to False.

These changes do not cause any notification. You can change instead the Size and PlatformDefault properties directly, what calls the OnChange event.

This method should be used only in cases where the OnChange notification is triggered by some other mechanism.

See Also