Scheduler for WinForms | ComponentOne
C1.Win.C1Schedule.4.5.2 Assembly / C1.Win.C1Schedule Namespace / C1Schedule Class / AppointmentLinkClicked Event

In This Topic
    AppointmentLinkClicked Event (C1Schedule)
    In This Topic
    Event that fires when the user clicks a hyperlink within the appointment element.
    Syntax
    'Declaration
     
    Public Event AppointmentLinkClicked As System.EventHandler(Of AppointmentLinkClickedEventArgs)
    public event System.EventHandler<AppointmentLinkClickedEventArgs> AppointmentLinkClicked
    Event Data

    The event handler receives an argument of type AppointmentLinkClickedEventArgs containing data related to this event. The following AppointmentLinkClickedEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the appointment which the event was raised for. (Inherited from C1.C1Schedule.AppointmentEventArgs)
    Gets the button that was clicked on the link.  
    Gets the value of the link's HREF attribute.  
    Gets the value of the link's TARGET attribute.  
    See Also