From dcfaa92e3cd5eddf0a41137c2be678bac99d7874 Mon Sep 17 00:00:00 2001
From: dsiders
+DoOnHelp is a method called to perform actions needed when the Help
+command is executed for the task dialog. It signals the OnHelp event handler
+(when assigned) to respond to the help request.
+
+DoOnHelp is called when the widgetset handles a TDN_HELP task dialog
+notification message which occurs when the Help button is clicked. For
+platforms where an emulated task dialog form is used, it is called from the
+KeyDown method in the TLCLTaskDialog instance when the F1 key is pressed.
+
+QueryItemIndex is an Integer property which contains the
+ordinal position for the selected value in the QueryChoices on the dialog. It
+contains the initial item in QueryChoices selected when the Execute method is
+called. It is updated with the option selected during execution of the dialog
+form.
+
+Use QueryResult to access the string value for the selected item in
+QueryChoices.
+
+QueryItem and QueryResult are relevant when tfQuery has been included in the
+Flags for the task dialog.
+
+Use ModalResult to determine the button or key combination used to complete
+execution of the dialog form.
+
RadioButton is a read-only TTaskDialogRadioButtonItem
-property with the radio button selected when the Task dialog was executed.
-The property value is set when the Execute method calls the
-wrapper in
+Use the Default property in one of the RadioButtons to indicate the selected
+radio button control when the Execute method is called.
+
+Include tfNoDefaultRadioButton in the Flags property to disable automatic
+selection of a default radio button on the dialog form.
+SimpleQuery is a String property which contains free-form
+text maintained using the query control for the task dialog. A single-line edit
+control is used to display and edit the value for the property.
+
+SimpleQuery is displayed on the dialog when tfSimpleQuery has been included in
+the Flags property. Please note that tfQuery and tfSimpleQuery flag values are
+mutually exclusive with tfQuery taking precedence.
+
+Use QueryChoices if predefined choices selected using a combo-box control are
+needed on the task dialog.
+
The default value for the property is #0 (NULL character) and indicates that
-obfuscation is not enabled for the simple query control.
+obfuscation is not enabled for the simple query control. Another character
+stored in the property is used to obfuscate the characters entered in the
+SimpleQuery property.
+
+SimpleQueryPasswordChar is used when tfSimpleQuery has been included in the
+Flags for the task dialog.
Use ExpandedText to set the content in the collapsible area on the Task
@@ -7098,7 +7169,7 @@ executed.
-OnButtonClicked is signalled after a button is clicked on the Task dialog.
+OnButtonClicked is signalled when a button is clicked on the Task dialog.