Click or drag to resize

IScriptingEventsOnSaleStakeholderFieldsChanged Method

Is passed the old and new values for the field. Is called before the save is performed.

Namespace:  SuperOffice.COM.ScriptEvents
Assembly:  Scripting.Interop (in Scripting.Interop.dll) Version: 8.0.0.0
Syntax
void OnSaleStakeholderFieldsChanged(
	int oldValue,
	int newValue
)

Parameters

oldValue
Type: SystemInt32
newValue
Type: SystemInt32
Examples

Example

VB
Sub OnSaleStakeholderFieldsChanged(action, identity, fieldIds, fieldNames) 
    msg = "action: " & action & vbCRLF 
    msg = msg & "identity: " & CStr( identity ) & vbCRLF 
    msg = msg & "fieldIds: " & CStr( fieldIds ) & vbCRLF 
    msg = msg & "fieldNames: " & CStr(fieldNames) & vbCRLF 

    SOMessageBox  msg
End Sub

See Also