  | TaskDialogButtonElevationRequired Property  | 
 
            Gets or sets a value that indicates whether the Task Dialog button or command link should have a 
            User Account Control (UAC) shield icon (in other words, whether the action invoked by the 
            button requires elevation). 
            
 
    Namespace: 
   Ookii.Dialogs
    Assembly:
   Ookii.Dialogs (in Ookii.Dialogs.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic bool ElevationRequired { get; set; }Public Property ElevationRequired As Boolean
	Get
	Set
public:
property bool ElevationRequired {
	bool get ();
	void set (bool value);
}member ElevationRequired : bool with get, set
Property Value
Type: 
Boolean if the button contains a UAC shield icon; otherwise, 
.
            
Remarks
            Elevation is not performed by the task dialog; the code implementing the operation that results from
            the button being clicked is responsible for performing elevation if required.
            
See Also