  | TaskDialogRadioButtonChecked Property  | 
 
            Gets or sets a value that indicates whether the radio button is checked.
            
 
    Namespace: 
   Ookii.Dialogs
    Assembly:
   Ookii.Dialogs (in Ookii.Dialogs.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic bool Checked { get; set; }Public Property Checked As Boolean
	Get
	Set
public:
property bool Checked {
	bool get ();
	void set (bool value);
}member Checked : bool with get, set
Property Value
Type: 
Boolean if the radio button is checked; otherwise, 
.
            The default value is 
.
            
Remarks
            Setting this property while the dialog is being displayed has no effect. Instead, use the 
Click
            method to check a particular radio button.
            
See Also