ObjectChangeType Enumeration | 
 
            Enum definition which is passed in the event args for a RedrawRequired event or Entity/TypedList Changed event. 
            Subscribers to these events can then decide based on this enum value what to redraw or change.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.4.0.0 (5.4.0)
Syntaxpublic enum ObjectChangeType
Public Enumeration ObjectChangeType
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | EntityCore | 0 | 
            Data in the entity definition has been changed, but not in contained object stores. This type is used for f.e. renames.
             | 
 | EntityComplete | 1 | 
            The entity definition has changed completely. This type is used for severe changes.
             | 
 | EntityFields | 2 | 
            The entity's fields object has changed. This can be due to a field addition/removal, rename of a field etc. 
             | 
 | EntityRelations | 3 | 
            The entity's relations have changed (one or more).
             | 
 | EntityCustomProperties | 4 | 
            The entity's custom properties are changed.
             | 
 | EntityFieldsOnRelatedEntityFields | 5 | 
            The entity's fields mapped onto related entity fields are changed.
             | 
 | EntityHierarchyData | 6 | 
            The entity data for its place in a hierarchy has been changed
             | 
 | EntityContainedElements | 7 | 
            Data in contained object stores has been changed however these changes have no particular impact on UI elements as they're handled themselves.
            Used in UI repainting directives to project explorer.
             | 
 | TypedListCore | 8 | 
            Data in the typed list definition has been changed but not in contained object stores. This type is used for f.e. renames.
             | 
 | TypedListComplete | 9 | 
            The typed list definition has changed completely. This type is used for severe changes.
             | 
 | TypedListFields | 10 | 
            The typed list's fields have changed (one or more). 
             | 
 | TypedListCustomProperties | 11 | 
            The typed list's custom properties are changed
             | 
 | TypedListEntityAlias | 12 | 
            An alias of an entity has been changed.
             | 
 | TypedViewCore | 13 | 
            Data in the typed view definition has been changed but not in contained object stores. This type is used for f.e. renames.
             | 
 | TypedViewComplete | 14 | 
            the typed view definition has changed completely.
             | 
 | TypedViewFields | 15 | 
            The typed view's fields have changed (one or more).
             | 
 | TypedViewCustomProperties | 16 | 
            The typed view's custom properties are changed
             | 
 | SPCallCore | 17 | 
            Data in the spcall definition has been changed but not in contained object stores. This type is used for f.e. renames.
             | 
 | SPCallComplete | 18 | 
            The complete stored procedure is changed
             | 
 | SPCallParameters | 19 | 
            One or more parameters were changed
             | 
 | SPCallCustomProperties | 20 | 
            The sp call's custom properties are changed.
             | 
See Also