ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.QueryDesigner Assembly / GrapeCity.ActiveReports.QueryDesigner.Implementation.Data.SchemaModel Namespace / Column Class / Column Constructor
The column name.
The column data type.
Whether the column is included to primary key.

In This Topic
    Column Constructor
    In This Topic
    Initializes a new instance of the Column class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal name As String, _
       ByVal dataType As Type, _
       ByVal isPrimaryKey As Boolean _
    )
    public Column( 
       string name,
       Type dataType,
       bool isPrimaryKey
    )

    Parameters

    name
    The column name.
    dataType
    The column data type.
    isPrimaryKey
    Whether the column is included to primary key.
    See Also