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

TCustomTaskDialog.FooterText

Text that is displayed in the footer area on the Task dialog.

Declaration

Source position: dialogs.pp line 658

public property TCustomTaskDialog.FooterText : TTranslateString
  read FFooterText
  write FFooterText;

Description

FooterText is a TTranslateString property with the text displayed in the footer area on the Task dialog. Its value can be localized using the standard LCL translation facilities. It can contain multi-line text when line ending characters (#13,#10) are embedded in the String value. For example:

ADialog.FooterText := '(c) Copyright 1960-2021, Acme Corporation LLC.' + #10 +
  'All rights reserved.';

Or, the multi-line value can be entered in the object inspector property editor at design-time.

Text, ExpandedText, and FooterText allow an HTML-like hyperlinking capability using the <a href="linktarget">Link Text</a> notation. The feature must be enabled by including tfEnableHyperlinks in the Flags property. Use tfExpandFooterArea to position the expanded text in the footer area.

Version info

Multi-line property editors in the object inspector were enabled in Lazarus version 2.2.0.

See also

TCustomTaskDialog.FooterIcon

  

Icon for the footer area displayed at the bottom of the dialog.

TCustomTaskDialog.Text

  

Text displayed as main content for the Task dialog.

TCustomTaskDialog.ExpandedText

  

Text that is displayed in the expandable / collapsible area on the Task dialog.

TCustomTaskDialog.Flags

  

Set of options enabled for the Task dialog.

TTaskDialogFlags

  

Set type used to store values from the TTaskDialogFlag enumeration.

TTaskDialogFlag

  

Represents options that can be enabled for TTaskDialog.

TTranslateString

  

Alias for the String type.


Version 3.2 Generated 2024-02-25 Home