ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.QueryDesigner Assembly / GrapeCity.ActiveReports.QueryDesigner.Implementation.Data.SchemaModel Namespace / Column Class / Column Constructor
A System.String value indicating the name of the column.
A System.Type object representing the data type of the column.
A System.Boolean value indicating whether the column is included in the primary key.

In This Topic
    Column Constructor
    In This Topic
    Initializes a new instance of the Column class with the specified name, data type and schema.
    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
    A System.String value indicating the name of the column.
    dataType
    A System.Type object representing the data type of the column.
    isPrimaryKey
    A System.Boolean value indicating whether the column is included in the primary key.
    Exceptions
    ExceptionDescription
    Thrown if name or dataType is null.
    See Also