FMX.Forms.TCommonCustomForm.Transparency
Delphi
property Transparency: Boolean read FTransparency write SetTransparency default False;
C++
__property bool Transparency = {read=FTransparency, write=SetTransparency, default=0};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | FMX.Forms.pas FMX.Forms.hpp |
FMX.Forms | TCommonCustomForm |
Description
Indicates whether the form is transparent or not.
Use Transparency to determine whether the form is displayed as a totally transparent one. However, note that in this situation, all the controls will not be transparent and will be displayed normally. Only the form's background will be set to a transparent state.
If you set Transparency to True, the form will not display its title bar, nor its border. This means that you need to apply programmatic methods (involving setting of the Top and Left properties) to move the form on the screen surface.