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

Sets the checked value of the given item. This value should be from the System.WinForms.CheckState enumeration.

[Visual Basic]
Public Sub SetItemCheckState( _
   ByVal index As Integer, _
   ByVal value As CheckState _
)
[C#]
public void SetItemCheckState(
   int index,
   CheckState value
);
[C++]
public: void SetItemCheckState(
   int index,
   CheckState value
);
[JScript]
public function SetItemCheckState(
   index : int,
   value : CheckState
);

Parameters

index
Index of the item to set the checkstate for.
value
New value for displaying a check.

See Also

CheckedListBox Class | CheckedListBox Members | System.WinForms Namespace | CheckState