| ItemModifyDelegate Delegate |
Namespace:
CodeStack.SwEx.AddIn.Delegates
Assembly:
CodeStack.SwEx.AddIn (in CodeStack.SwEx.AddIn.dll) Version: 0.8.1.0 (0.8.1.0)
Syntax public delegate void ItemModifyDelegate(
DocumentHandler docHandler,
ItemModificationAction_e action,
swNotifyEntityType_e entType,
string name,
string oldName = ""
)
Public Delegate Sub ItemModifyDelegate (
docHandler As DocumentHandler,
action As ItemModificationAction_e,
entType As swNotifyEntityType_e,
name As String,
Optional oldName As String = ""
)
public delegate void ItemModifyDelegate(
DocumentHandler^ docHandler,
ItemModificationAction_e action,
swNotifyEntityType_e entType,
String^ name,
String^ oldName = L""
)
Parameters
- docHandler
- Type: CodeStack.SwEx.AddIn.CoreDocumentHandler
Document Handler which sends this notification - action
- Type: CodeStack.SwEx.AddIn.EnumsItemModificationAction_e
Item modification type - entType
- Type: swNotifyEntityType_e
Modified entity type as defined in swNotifyEntityType_e enumeration - name
- Type: SystemString
Name of the item - oldName (Optional)
- Type: SystemString
Old name of the item if PreRename or Rename operation
See Also