Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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.

{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}
Signature
C#C#
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}{signature:vb.net
vb.net
}
Public Property MaxRows() As Integer
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle