IScriptingEventsOnCurrentAppointmentCompletedChanged Method |
Called when the appointment is about to be saved, and the completed checkbox has changed value since the object was loaded.
Namespace:
SuperOffice.COM.ScriptEvents
Assembly:
Scripting.Interop (in Scripting.Interop.dll) Version: 8.0.0.0
Syntaxvoid OnCurrentAppointmentCompletedChanged(
int oldValue,
int newValue
)
Sub OnCurrentAppointmentCompletedChanged (
oldValue As Integer,
newValue As Integer
)
Dim instance As IScriptingEvents
Dim oldValue As Integer
Dim newValue As Integer
instance.OnCurrentAppointmentCompletedChanged(oldValue,
newValue)
void OnCurrentAppointmentCompletedChanged(
[InAttribute] int oldValue,
[InAttribute] int newValue
)
Parameters
- oldValue
- Type: SystemInt32
- newValue
- Type: SystemInt32
ExamplesDescription
This text may be copied to the notepad, and saved as a *.vbs file.
sub OnCurrentAppointmentCompletedChanged (oldValue, newValue)
SOMessageBox "The current appointments completedflag was changed from: " & oldvalue & ", to: " & newvalue
End Sub
See Also