Vcl.Dialogs.TTaskDialogFlag

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TTaskDialogFlag = (tfEnableHyperlinks, tfUseHiconMain,
tfUseHiconFooter, tfAllowDialogCancellation,
tfUseCommandLinks, tfUseCommandLinksNoIcon,
tfExpandFooterArea, tfExpandedByDefault,
tfVerificationFlagChecked, tfShowProgressBar,
tfShowMarqueeProgressBar, tfCallbackTimer,
tfPositionRelativeToWindow, tfRtlLayout,
tfNoDefaultRadioButton, tfCanBeMinimized,
tfSizeToContent);

C++

enum DECLSPEC_DENUM TTaskDialogFlag : unsigned char { tfEnableHyperlinks, tfUseHiconMain, tfUseHiconFooter, tfAllowDialogCancellation, tfUseCommandLinks, tfUseCommandLinksNoIcon, tfExpandFooterArea, tfExpandedByDefault, tfVerificationFlagChecked, tfShowProgressBar, tfShowMarqueeProgressBar, tfCallbackTimer, tfPositionRelativeToWindow, tfRtlLayout, tfNoDefaultRadioButton, tfCanBeMinimized, tfSizeToContent };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.Dialogs.pas
Vcl.Dialogs.hpp
Vcl.Dialogs Vcl.Dialogs

Description

Flags for Task Dialogs.

The following flags specify options when are set for Task Dialogs

Flag Description

tfEnableHyperlinks

The content, footer, and expanded text can include hyperlinks.

tfUseHiconMain

Use the custom main icon.

tfUseHiconFooter

Use the custom footer icon.

tfAllowDialogCancellation

Permit that the Task Dialog be closed in the absence of a Cancel button.

tfSizeToContent

Indicate that the width of the task dialog is determined by the width of its content area.

tfUseCommandLinks

Buttons are displayed as command links using a standard dialog glyph.

tfUseCommandLinksNoIcon

Buttons are displayed as command links without a glyph.

tfExpandFooterArea

Display expanded text in the footer.

tfExpandedByDefault

Expanded text is displayed when the Task Dialog opens.

tfVerificationFlagChecked

The verification check box is initially checked.

tfShowProgressBar

Display the progress bar.

tfShowMarqueeProgressBar

Display marquee progress bar.

tfCallbackTimer

Dialogs callback is called every 200 milliseconds.

tfPositionRelativeToWindow

Task Dialog is centered to the parent window.

tfRtlLayout

The text reads right-to-left.

tfNoDefaultRadioButton

There is no default radio button.

tfCanBeMinimized

The Task Dialog can be minimized.