FMX.Controls.TPopup.PopupFormSize

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

property PopupFormSize: TSizeF read FPopupFormSize write SetPopupFormSize;

C++

__property System::Types::TSizeF PopupFormSize = {read=FPopupFormSize, write=SetPopupFormSize};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
property public
FMX.Controls.pas
FMX.Controls.hpp
FMX.Controls TPopup


Beschreibung

Setzt die Größe von TPopup durch ein TSizeF-Objekt.

Der folgende Code wird beispielsweise die Breite von TPopup auf 200 und die Höhe auf 250 setzen :

Delphi :

  p1.PopupFormSize := TSizeF.Create(200, 250);

C++-Builder :

  p1->PopupFormSize = TSizeF->Create(200, 250);


Siehe auch