ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.QueryDesigner Assembly / GrapeCity.ActiveReports.QueryDesigner.Implementation.Data Namespace / DataColumn Structure / DataColumn Constructor
A System.String value indicating the name of the data column.
A System.String value indicating the data type of the data column.
Example

In This Topic
    DataColumn Constructor
    In This Topic
    Initializes a new instance of the DataColumn structure with the specified name and data type.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal name As String, _
       ByVal dataType As String _
    )
    public DataColumn( 
       string name,
       string dataType
    )

    Parameters

    name
    A System.String value indicating the name of the data column.
    dataType
    A System.String value indicating the data type of the data column.
    Example
    var column = new DataColumn("Id", "int");
    See Also