ARCed.Controls.MultiStateCheckbox.IsPointInCheckBox C# (CSharp) Method

IsPointInCheckBox() public method

Returns true/false if given point is within the bounds of the checkbox rectangle.
public IsPointInCheckBox ( Point point ) : bool
point Point Point to check
return bool
        public bool IsPointInCheckBox(Point point)
        {
            return this.IsPointInCheckBox(point.X, point.Y);
        }

Same methods

MultiStateCheckbox::IsPointInCheckBox ( int x, int y ) : bool