| RunPluginEventArgumentType Enumeration | 
 
            Enum used to specify which type of object is stored in the argument of the RunPluginEventArgs object.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.1.0.0 (5.1.0)
Syntaxpublic enum RunPluginEventArgumentType
Public Enumeration RunPluginEventArgumentType
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | Undefined | 0 | 
            Unknown / undefined content
             | 
 | EntityDefinition | 1 | 
            An EntityDefinition instance
             | 
 | TypedListDefinition | 2 | 
            A TypedListDefinition instance
             | 
 | TypedViewDefinition | 3 | 
            A TypedViewDefinition instance
             | 
 | SPCallDefinition | 4 | 
            An SPCallDefinition instance
             | 
 | ValueTypeDefinition | 5 | 
            A ValueType definition instance 
             | 
 | Project | 6 | 
            A Project instance
             | 
 | Entities | 7 | 
            An IList instance which contains solely EntityDefinition instances. You should access the object as an IList. 
             | 
 | TypedLists | 8 | 
            An IList instance which contains solely TypedListDefinition instances. You should access the object as an IList. 
             | 
 | TypedViews | 9 | 
            An IList instance which contains solely TypedViewDefinition instances. You should access the object as an IList. 
             | 
 | SPCalls | 10 | 
            An IList instance which contains solely SPCallDefinition instances. You should access the object as an IList. 
             | 
 | TvfCalls | 11 | 
            An IList instance which contains solely TvfCallDefinition instances. You should access the object as an IList. 
             | 
 | ValueTypes | 12 | 
            An IList instance which contains solely ValueTypeDefinition instances. You should access the object as an IList. 
             | 
 | TargetValue | 13 | 
            an object which is meant for the targetvalue and which is meant to be processed by the plugin.
             | 
 | TvfCallDefinition | 14 | 
            A TvfCallDefinition instance
             | 
See Also