Click or drag to resize

IScriptingEventsOnCurrentPersonFieldChanged Method

FieldName is name of the field being changed. e.g.: 'contact.name' or 'address.city'

Namespace:  SuperOffice.COM.ScriptEvents
Assembly:  Scripting.Interop (in Scripting.Interop.dll) Version: 8.0.0.0
Syntax
void OnCurrentPersonFieldChanged(
	string fullFieldName
)

Parameters

fullFieldName
Type: SystemString
This gives you the table.fieldname of field that's changed.
Examples

Description

This text may be copied to the notepad, and saved as a *.vbs file.

VB
Sub OnCurrentPersonFieldChanged(fieldname)
    if fieldname = "person.position_idx" then
        SOMessageBox "The persons position is changed, should you update person interests?"
    end if    
End Sub

See Also