NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

CheckedListBox.GetItemCheckState

Gets the check value of the current item. This value will be from the System.WinForms.CheckState enumeration.

[Visual Basic]
Public Function GetItemCheckState( _
   ByVal index As Integer _
) As CheckState
[C#]
public CheckState GetItemCheckState(
   int index
);
[C++]
public: CheckState GetItemCheckState(
   int index
);
[JScript]
public function GetItemCheckState(
   index : int
) : CheckState;

Parameters

index
Index of the item to get the checked value of.

Return Value

a value from System.WinForms.CheckState indicating the current checked status of the list item.

See Also

CheckedListBox Class | CheckedListBox Members | System.WinForms Namespace