Unit 'Forms' Package
[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] [#lcl]

TCloseAction

What should happen when a form is closed.

Declaration

Source position: forms.pp line 70

type TCloseAction = (

  caNone,

  

Do nothing.

  caHide,

  

The form is hidden.

  caFree,

  

The form is destroyed.

  caMinimize

  

The form is minimized.

);

See also

TCustomForm.OnClose

  

Handler called when the form is closed. It determines what happens to the form (destroy, hide...).