Gets or sets a value that indicates whether the BitFlag object is checked. Namespace: Microsoft.ConfigurationManagement.ManagementProvider
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As BitFlag
Dim value As Boolean

value = instance.Checked

instance.Checked = value

Syntax

Visual Basic
Public Property Checked As Boolean
C#
public bool Checked { get; set; }
C++
public:
property bool Checked {
		bool get ();
		void set (bool value);
}
J#
/** @property */
public boolean get_Checked ()

/** @property */
public void set_Checked (boolean value)
JScript
public function get Checked () : boolean

public function set Checked (value : boolean)

Property Value

true if the object is checked; otherwise false.

Remarks

If your application sets this property, the state of the bit flag check is indicated in the CheckState property.


Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also