TaskDialogCommandLinkButton Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
TaskDialogCommandLinkButton() |
Initializes a new instance of the TaskDialogButton class. |
TaskDialogCommandLinkButton(String, String, Boolean, Boolean) |
Initializes a new instance of the TaskDialogButton class using the given text and, optionally, a description text. |
TaskDialogCommandLinkButton()
Initializes a new instance of the TaskDialogButton class.
public:
TaskDialogCommandLinkButton();
public TaskDialogCommandLinkButton ();
Public Sub New ()
Applies to
TaskDialogCommandLinkButton(String, String, Boolean, Boolean)
Initializes a new instance of the TaskDialogButton class using the given text and, optionally, a description text.
public TaskDialogCommandLinkButton (string? text, string? descriptionText = default, bool enabled = true, bool allowCloseDialog = true);
new System.Windows.Forms.TaskDialogCommandLinkButton : string * string * bool * bool -> System.Windows.Forms.TaskDialogCommandLinkButton
Public Sub New (text As String, Optional descriptionText As String = Nothing, Optional enabled As Boolean = true, Optional allowCloseDialog As Boolean = true)
Parameters
- text
- String
The text of the control.
- descriptionText
- String
An additional description text that will be displayed in a separate line when the TaskDialogButtons of the task dialog are shown as command links (see DescriptionText).
- enabled
- Boolean
A value that indicates if the button should be enabled.
- allowCloseDialog
- Boolean
A value that indicates whether the task dialog should close when this button is clicked.