Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Returns or set an {{int}} that represents the maximum number of rows to be imported.  If more rows than this are in the data source, the extra ones will be ignored.{excerpt}
{signature:C#}
 public int MaxRows{ get; set; }
{signature}{signature:vb.net}
Public Property MaxRows() As Integer
{signature}
{example}{code:csharp|title=C#}

          //--- Return MaxRows
          int rows = importProps.MaxRows;

          //--- Set MaxRows
          importProps.MaxRows = 50;
        {code}
{code:vb.net|title=vb.net}

          '--- Return MaxRows
          Dim rows As Integer = importProps.MaxRows

          '--- Set MaxRows
          importProps.MaxRows = 50
        {code}

{example}