Scheduler for WPF | ComponentOne
C1.C1Schedule Namespace / AppointmentCollection Class / Add Method / Add(DateTime,TimeSpan,String) Method
The System.DateTime value which specifies the start date and time of the appointment.
The System.TimeSpan value which specifies the duration of the appointment.
The System.String value which contains the subject of the appointment.

In This Topic
    Add(DateTime,TimeSpan,String) Method
    In This Topic
    Creates the new Appointment object with specified parameters and adds it to the collection.
    Syntax
    'Declaration
     
    
    Public Overloads Function Add( _
       ByVal start As Date, _
       ByVal duration As TimeSpan, _
       ByVal subject As String _
    ) As Appointment

    Parameters

    start
    The System.DateTime value which specifies the start date and time of the appointment.
    duration
    The System.TimeSpan value which specifies the duration of the appointment.
    subject
    The System.String value which contains the subject of the appointment.

    Return Value

    The Appointment object.
    See Also