-
Notifications
You must be signed in to change notification settings - Fork 9
Class Column
Mauro Rogledi edited this page Jun 4, 2018
·
2 revisions
| Properties | Type | Accessor | Description |
|---|---|---|---|
| Title | string | get; private set; | The title of column: this appears on grids |
| Name | string | get; private set; | The name of the column: the physical name on the database |
| ColType | System.Type | get; private set; | The datatype of colum (es int, string, enum) |
| Len | int | get; private set; | The len of a string column or integer part of a double column |
| Dec | int | get; private set; | The len of decimal part of a double column |
| DefaultValue | object | get; private set; | The default value in a empty row |
| EnableNull | bool | get; set; | Indicates if a column can accept null values |
| AutoIncrement | bool | get; set; | Indicates if a column has autoincrement |
| VisibleInRadar | bool | get; set; | Indicates if a column is visible in radar window |
| EnumType | System.Type | get; private set; | Contain the type of enum If column is a enum type |
| IsVirtual | bool | get; set; | A virtual column will not be created on the database |
| AlignRight | bool | get; set; | Used to align value and title on grids |