IScriptingEventsOnProjectMemberFieldsChanged Method |
Is passed the old and new values for the field. Is called before the save is performed.
New in Seven.
Namespace:
SuperOffice.COM.ScriptEvents
Assembly:
Scripting.Interop (in Scripting.Interop.dll) Version: 8.0.0.0
Syntaxvoid OnProjectMemberFieldsChanged(
int oldValue,
int newValue
)
Sub OnProjectMemberFieldsChanged (
oldValue As Integer,
newValue As Integer
)
Dim instance As IScriptingEvents
Dim oldValue As Integer
Dim newValue As Integer
instance.OnProjectMemberFieldsChanged(oldValue,
newValue)
void OnProjectMemberFieldsChanged(
[InAttribute] int oldValue,
[InAttribute] int newValue
)
Parameters
- oldValue
- Type: SystemInt32
- newValue
- Type: SystemInt32
ExamplesSub OnProjectMemberFieldsChanged(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