[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] Reference for unit 'Dialogs' (#lcl)

TTaskDialogFlags

Declaration

Source position: dialogs.pp line 518

type TTaskDialogFlags = set of (

  tfEnableHyperlinks,

  

Allow HTML-like hyperlinks in the dialog (in Text, Footer, and ExpandedText) using HTML tag "a href=...".

  tfUseHiconMain,

  

Use custom main icon with CustomMainIcon property.

  tfUseHiconFooter,

  

Use custom footer icon with CustomFooterIcon property.

  tfAllowDialogCancellation,

  

Allow canceling the dialog by Esc key, or Alt+F4 (ie OS default hotkey).

  tfUseCommandLinks,

  

Custom buttons will be shown as big buttons in the middle of the dialog. Use "\n" to add info to buttons (shown in hint in emulated dialog).

  tfUseCommandLinksNoIcon,

  

Don't show glyphs for custom buttons in the "command links" mode.

  tfExpandFooterArea,

  

Show ExpandedText in the footer, instead of near the main text.

  tfExpandedByDefault,

  

Initially show dialog in expanded state.

  tfVerificationFlagChecked,

  

Bottom check-box (verification) shows in the checked state.

  tfShowProgressBar,

  

Show additional progress-bar.

  tfShowMarqueeProgressBar,

  

Show additional progress-bar, in the marquee style, never ending progress.

  tfCallbackTimer,

  

Execute the timer callback event every 200 milliseconds.

  tfPositionRelativeToWindow,

  

Form position will be poOwnerFormCenter, instead of poScreenCenter.

  tfRtlLayout,

  

Use Right-to-Left layout for texts.

  tfNoDefaultRadioButton,

  

Don't check any of radio-buttons.

  tfCanBeMinimized

  

Allow minimizing the dialog.

);

The latest version of this document can be found at lazarus-ccr.sourceforge.net.