Description
Sets or returns the maximum number of rows to import from the data source.C#
<p> public int MaxRows{ get ; set ; }</p> |
vb.net
<p> Public Property MaxRows() As Integer </p> |
Examples
C#
//--- Get MaxRows int maxRows = importProps.MaxRows; //--- Set MaxRows importProps.MaxRows = 20; |
vb.net
'--- Get MaxRows Dim maxRows As Integer = importProps.MaxRows '--- Set MaxRows importProps.MaxRows = 20 |