XmlMappedRange.CopyFromRecordset(Object, Object, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Copies the contents of an ADO or DAO recordset onto a worksheet, beginning at the XmlMappedRange control.
public int CopyFromRecordset (object Data, object MaxRows, object MaxColumns);
abstract member CopyFromRecordset : obj * obj * obj -> int
Public Function CopyFromRecordset (Data As Object, Optional MaxRows As Object, Optional MaxColumns As Object) As Integer
Parameters
- Data
- Object
The recordset to copy into the range.
- MaxRows
- Object
The maximum number of records to copy onto the worksheet. If this argument is omitted, all the records in the recordset object are copied.
- MaxColumns
- Object
The maximum number of fields to copy onto the worksheet. If this argument is omitted, all the fields in the recordset object are copied.
Returns
Remarks
If the recordset contains fields with OLE objects in them, this method fails.
Copying begins at the current row of the recordset. After copying is completed, the EOF property of the recordset object is true
.
Optional Parameters
For information on optional parameters, see Optional Parameters in Office Solutions.