RemoveAll

Beschreibung:

Löscht alle Termine.

Rückgabewert:

Bool

Beispiel VBScript:

Dim oAppointments : Set oAppointments = cRM.CurrentProject.timemanager.Appointments

Call oAppointments.RemoveAll()

Set oAppointments = Nothing

Beispiel C#-Script:

Appointments appointments = cRM.CurrentProject.TimeManager.Appointments;

appointments.RemoveAll();

appointments.Dispose();