ARCed.Scintilla.Range.IntersectsWith C# (CSharp) Method

IntersectsWith() public method

public IntersectsWith ( Range otherRange ) : bool
otherRange Range
return bool
        public bool IntersectsWith(Range otherRange)
        {
            return otherRange.PositionInRange(this._start) | otherRange.PositionInRange(this._end) | this.PositionInRange(otherRange.Start) | this.PositionInRange(otherRange.End);
        }