Check Box ListGet Item Checked(Int 32) Method
Returns a value indicating whether the specified item is checked
Definition
Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
True if the item is checked, false if it is not
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public bool GetItemChecked(
int index
)VB
Public Function GetItemChecked (
index As Integer
) As BooleanC++
public:
bool GetItemChecked(
int index
)F#
member GetItemChecked :
index : int -> bool Parameters
- index Int32
- The index of the item to examine
Return Value
BooleanTrue if the item is checked, false if it is not
Exceptions
| ArgumentOutOfRangeException | This is thrown if the index value is not within the bounds of the item collection. |