Click or drag to resize
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.2.0.0 (5.2.17.0403)
Syntax
public enum RunPluginEventArgumentType
Members
  Member nameValueDescription
Undefined0 Unknown / undefined content
EntityDefinition1 An EntityDefinition instance
TypedListDefinition2 A TypedListDefinition instance
TypedViewDefinition3 A TypedViewDefinition instance
SPCallDefinition4 An SPCallDefinition instance
ValueTypeDefinition5 A ValueType definition instance
Project6 A Project instance
Entities7 An IList instance which contains solely EntityDefinition instances. You should access the object as an IList.
TypedLists8 An IList instance which contains solely TypedListDefinition instances. You should access the object as an IList.
TypedViews9 An IList instance which contains solely TypedViewDefinition instances. You should access the object as an IList.
SPCalls10 An IList instance which contains solely SPCallDefinition instances. You should access the object as an IList.
TvfCalls11 An IList instance which contains solely TvfCallDefinition instances. You should access the object as an IList.
ValueTypes12 An IList instance which contains solely ValueTypeDefinition instances. You should access the object as an IList.
TargetValue13 an object which is meant for the targetvalue and which is meant to be processed by the plugin.
TvfCallDefinition14 A TvfCallDefinition instance
See Also