FMX.Forms.TCustomPopupForm.CanShow

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function CanShow: Boolean; override;

C++

virtual bool __fastcall CanShow();

Properties

Type Visibility Source Unit Parent
function public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TCustomPopupForm

Description

Retrieves whether the form is not visible.

First CanShow calls the inherited TCommonCustomForm.CanShow. If TCommonCustomForm.CanShow returns False, CanShow exits returning False. If TCommonCustomForm.CanShow returns True, CanShow initiates animation (AniDuration, AniPosition, DoAniTimer) and exits returning True.

See Also