RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Forms.TPopupForm Record

Stores information for a popup.

Pascal
TPopupForm = record
  FormID: Integer;
  Form: TCustomForm;
  WasPopup: Boolean;
end;
C++
struct TPopupForm {
  int FormID;
  TCustomForm Form;
  Boolean WasPopup;
};

TPopupForm contains information about a custom form that is registered as a popup in another form.

FormId  
Represents the form id.  
Form  
Represents the TCustomForm.  
WasPopup  
Denotes if the popup was already displayed.  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!