Scheduler for UWP | ComponentOne
C1.C1Schedule Namespace / Appointment Class / Appointment Constructor / Appointment Constructor(DateTime,TimeSpan,String)
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
    Appointment Constructor(DateTime,TimeSpan,String)
    In This Topic
    Initializes a new instance of the Appointment class with the specified parameters.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal start As Date, _
       ByVal duration As TimeSpan, _
       ByVal subject As String _
    )
    public Appointment( 
       DateTime start,
       TimeSpan duration,
       string subject
    )

    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.
    See Also