FMX.Controls.TPopup.PopupFormSize

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property PopupFormSize: TSizeF read FPopupFormSize write SetPopupFormSize;

C++

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

Properties

Type Visibility Source Unit Parent
property public
FMX.Controls.pas
FMX.Controls.hpp
FMX.Controls TPopup

Description

Sets the size of the TPopup through a TSizeF object.

For example, the following code will set up the TPopup Width to 200 and Height to 250 :

Delphi :

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

C++ Builder :

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


See Also