dotConnect for SQLite Documentation
Devart.Common Namespace / DbDataTable Class / Columns Property

On this page
    Columns Property (DbDataTable)
    On this page
    Gets the collection of columns that belong to this table.
    Syntax
    'Declaration
     
    Public Shadows ReadOnly Property Columns As DataColumnCollection
    public new DataColumnCollection Columns {get;}

    Property Value

    A System.Data.DataColumnCollection that contains the collection of System.Data.DataColumn objects for the table; otherwise, a null value if no System.Data.DataColumn objects exist.

    This property is read-only.

    Remarks
    The System.Data.DataColumnCollection determines the schema of a table by defining the data type of each column.
    See Also