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

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

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

          '--- Set MaxRows
          importProps.MaxRows = 20