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.GetItemChecked

Indicates if the given item is, in any way, shape, or form, checked. This will return true if the item is fully or indeterminately checked.

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

Parameters

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

Return Value

true if the item is, in any way, checked, otherwise false

See Also

CheckedListBox Class | CheckedListBox Members | System.WinForms Namespace