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

In This Topic
    DataRow Constructor
    In This Topic
    Initializes a new instance of the DataRow class with the specified values.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal values() As Object _
    )
    public DataRow( 
       object[] values
    )

    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