System.Windows.Forms.CheckedListBox.CheckedIndexCollection.IndexOf(int)

Here are the examples of the csharp api class System.Windows.Forms.CheckedListBox.CheckedIndexCollection.IndexOf(int) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: HaSuite
Source File: Better.cs
public bool Checked(int index)
        {
            //Search for the item in CheckedIndices to see if its checked or not
            if (base.CheckedIndices.IndexOf(index) != -1)
            {
                return true;
            }
            else
            {
                return false;
            }
        }