cf_ControlTemplate_Extend


Description

Extended control template properties storing additional configuration properties for control templates that extend beyond base template definitions. This system enables complex template configurations and custom control behaviors.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
Id int identity 4 null

Primary key - Unique identifier for each extended template property, auto-incrementing integer

ControlId int 4 null
cf_ControlTemplate.Id FK_cf_ControlTemplate_Extend_cf_ControlTemplate1 C

Control template reference - Foreign key linking to cf_ControlTemplate being extended (required field)

PropertyName nvarchar 100 null

Property name - Name of the extended property being defined for the template

PropertyValue nvarchar 1073741823 null

Property value - Value of the extended property for template configuration

PropertyType nvarchar 512 null

Property data type - Data type of the property value for proper handling

OrderPosition int 4 null

Property order - Numeric position for ordering properties in template configuration

Method nvarchar 100 null

Property method - Processing method associated with this extended template property

Indexes

Constraint Name Type Sort Column(s)
PK__cf_Contr__3214EC0769799DA0 Primary key Asc Id

Relationships