DataSourceMaxRows Property |
Gets or sets the maximum rows can be imported
Namespace:
Hummingbird.TestFramework.Automation
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataMemberAttribute]
public uint MaxRows { get; set; }
<DataMemberAttribute>
Public Property MaxRows As UInteger
Get
Set
public:
[DataMemberAttribute]
property unsigned int MaxRows {
unsigned int get ();
void set (unsigned int value);
}
[<DataMemberAttribute>]
member MaxRows : uint32 with get, set
Property Value
Type:
UInt32
The unsigned integer value represents maximum rows can be fetched by an import. All rows will be imported if the MaxRows is set to 0;
Remarks
Technically the Maximum rows will be limited at 2 147 483 647 (0x7FFFFFFFF), which represents the maximum number can be hold in a 32bit integer.
See Also