SourceGrid.Range.ContainsRow C# (CSharp) Method

ContainsRow() public method

Returns true if the specified row is present in the current range.
public ContainsRow ( int p_Row ) : bool
p_Row int
return bool
        public bool ContainsRow(int p_Row)
        {
            return (p_Row >= m_Start.Row &&
                p_Row <= m_End.Row);
        }