Click or drag to resize

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
Syntax
void OnCurrentAppointmentCompletedChanged(
	int oldValue,
	int newValue
)

Parameters

oldValue
Type: SystemInt32
newValue
Type: SystemInt32
Examples

Description

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

VB
sub OnCurrentAppointmentCompletedChanged (oldValue, newValue)
    SOMessageBox "The current appointments completedflag was changed from: " & oldvalue & ", to: " & newvalue
End Sub

See Also