SourceGrid.RangeRegion.IntersectsWith C# (CSharp) Method

IntersectsWith() public method

Indicates if the specified range of cells is selected
public IntersectsWith ( Range p_Range ) : bool
p_Range Range
return bool
        public virtual bool IntersectsWith(Range p_Range)
        {
            if (p_Range.IsEmpty() || IsEmpty())
                return false;

            RangeRegion range = Intersect(p_Range);
            return !range.IsEmpty();
        }