AddDataRow Method
Jump to navigation
Jump to search
Adds a row of raw data to the raw data set.
Syntax
- AddDataRow( ByVal row As RawData)
Parameters
- row: An instance of the RawData class, which will be added as a row to the raw data set.
Usage Example
'Create a new RawDataSet object. See RawDataSet. Dim RDW As New RawDataSet 'Create a new RawData object, and specify a part name and number. See RawData. Dim row1 As New RawData row1.PartName = "Frame" row1.PartNumber = "FRM" 'Add a row to RawDataSet object with the specified part name and number. RDW.AddDataRow(row1)