|
|
|
|
|
<Scheduler>.DeleteResource (Función) Deletes a resource from a Scheduler control. Caution: If the Scheduler control is linked to a data source, deletion is performed only in the field: appointments linked to the resource are not deleted from the data source.. // Adds an appointment for tonight MyTitle is string StartAPT is DateTime EndAPT is DateTime NbResource is int MyTitle = "Sales meeting" StartAPT = DateSys() + "17000000" EndAPT = DateSys() + "17300000" ResourceNum = SCH_Schedule1.AddResource("Florence" + gStoredValue("Flo")) SCH_Scheduler1.AddAppointment("Flo", MyTitle, StartAPT) MyTitle = "Meeting 2" StartAPT = DateSys() + "17300000" EndAPT = DateSys() + "18000000" SCH_Schedule1.AddResource("Thomas" + gStoredValue("Tom")) SCH_Scheduler1.AddAppointment("Tom", MyTitle, StartAPT) // Deletes one of the resources ResDel is boolean ResDel = SCH_Scheduler1.DeleteResource("Flo") IF ResDel = True THEN Info("Resource deleted") END
Sintaxis
<Result> = <Scheduler control>.DeleteResource(<Resource>)
<Result>: booleano - True if a resource was deleted,
- False otherwise.
<Scheduler control>: Nombre del control Name of Scheduler control from which the resource will be deleted. This field may correspond to: - the Scheduler control of a window,
- the Scheduler control of a page,
- the Scheduler control of a report.
<Resource>: Cadena de caracteres Name of resource to delete.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|