Sets or returns the maximum number of rows to import from the data source.

<p> public int MaxRows{ get; set; }</p>
<p>Public Property MaxRows() As Integer</p>
 
          //--- Get MaxRows
          int maxRows = importProps.MaxRows;

          //--- Set MaxRows
          importProps.MaxRows = 20;
        
          '--- Get MaxRows
          Dim maxRows As Integer = importProps.MaxRows

          '--- Set MaxRows
          importProps.MaxRows = 20