ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.QueryDesigner Assembly / GrapeCity.ActiveReports.QueryDesigner.Implementation.Data Namespace / DataRow Class / DataRow Constructor
The array of the System.Object representing the values of the data row.
Example

DataRow Constructor
Initializes a new instance of the DataRow class with the specified values.
Syntax
'Declaration
 
Public Function New( _
   ByVal values() As Object _
)
 

Parameters

values
The array of the System.Object representing the values of the data row.
Exceptions
ExceptionDescription
Thrown when values are null.
Example
var row = new DataRow(new object[] { 1, "Tea" });
See Also