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

TTaskDialogFlags

Set type used to store values from the TTaskDialogFlag enumeration.

Declaration

Source position: dialogs.pp line 547

type TTaskDialogFlags = set of (

  tfEnableHyperlinks,

  

Allows HTML-like hyperlinks in the dialog (in Text, Footer, and ExpandedText) using the '<a href="target">Target</a>' notation.

  tfUseHiconMain,

  

Uses the handle to the image in MainIcon as the primary image for the Task dialog. Disables hyperlinks.

  tfUseHiconFooter,

  

Uses the handle to the image in FooterIcon as the footer icon in the Task dialog. Disables hyperlinks.

  tfAllowDialogCancellation,

  

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

  tfUseCommandLinks,

  

Custom buttons will be shown as big buttons in the middle of the dialog. Use #10 to add info to buttons (shown in hint in emulated dialog). Disables hyperlinks.

  tfUseCommandLinksNoIcon,

  

Hides glyphs for custom buttons in the "command links" mode. Disables hyperlinks.

  tfExpandFooterArea,

  

Show ExpandedText in the footer, instead of inline after the main text.

  tfExpandedByDefault,

  

Displays the dialog with ExpandedText in the expanded state.

  tfVerificationFlagChecked,

  

Displays the verification check-box verification shows in the checked state.

  tfShowProgressBar,

  

Shows a progress bar.

  tfShowMarqueeProgressBar,

  

Shows a progress bar using the marquee style.

  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,

  

Does not pre-select any of the radio buttons.

  tfCanBeMinimized,

  

Allow the dialog to be minimized.

  tfForceNonNative,

  

Forces use of an emulated task dialog form.

  tfEmulateClassicStyle

  

Used to enforce conformity in the visual appearance of a dialog in an application which is not using a theme.

);

Description

TTaskDialogFlags is the type used for the TCustomTaskDialog.Flags property.

See also

TTaskDialogFlag

  

Represents options that can be enabled for TTaskDialog.

TCustomTaskDialog.Flags

  

Set of options enabled for the Task dialog.


Version 3.2 Generated 2024-02-25 Home