ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.QueryDesigner Assembly / GrapeCity.ActiveReports.QueryDesigner.Implementation.Data Namespace / DataTable Class / DataTable Constructor
The collection of the DataColumn representing the columns of the data table.
The collection of the DataRow representing the rows of the data table.

In This Topic
    DataTable Constructor
    In This Topic
    Initializes a new instance of the DataTable class with the specified columns and rows.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal columns As IEnumerable(Of DataColumn), _
       ByVal rows As IEnumerable(Of DataRow) _
    )
    public DataTable( 
       IEnumerable<DataColumn> columns,
       IEnumerable<DataRow> rows
    )

    Parameters

    columns
    The collection of the DataColumn representing the columns of the data table.
    rows
    The collection of the DataRow representing the rows of the data table.
    See Also