IScriptingEventsOnAppointmentBeforeDelete Method |
Identity is the id of the current object.
If you need to update information in external applications based on this entity, this is the time to collect the information you (like identity, name, numbers, any user defined field and so on).
Namespace:
SuperOffice.COM.ScriptEvents
Assembly:
Scripting.Interop (in Scripting.Interop.dll) Version: 8.0.0.0
Syntaxvoid OnAppointmentBeforeDelete(
int identity
)
Sub OnAppointmentBeforeDelete (
identity As Integer
)
Dim instance As IScriptingEvents
Dim identity As Integer
instance.OnAppointmentBeforeDelete(identity)
void OnAppointmentBeforeDelete(
[InAttribute] int identity
)
Parameters
- identity
- Type: SystemInt32
appointment_id
Examplessub OnAppointmentBeforeDelete(id)
somessagebox "If you need any values from this appointment you need to get them now. After this the appointment with appointment_id= " & id & " would be gone from the database"
end sub
See Also