Spread Windows Forms 15.0
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / DropDownCalendar Class / Scrolled Event


In This Topic
    Scrolled Event
    In This Topic
    Occurs when the drop-down calendar is scrolled.
    Syntax
    'Declaration
     
    
    Public Event Scrolled As ScrolledEventHandler
    'Usage
     
    
    Dim instance As DropDownCalendar
    Dim handler As ScrolledEventHandler
     
    AddHandler instance.Scrolled, handler
    public event ScrolledEventHandler Scrolled
    Event Data

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

    PropertyDescription
    Gets the last (end) date in view.  
    Gets the first (start) date in value.  
    Remarks
    This event occurs when the displayed month or year changes. For example, click a navigator button or select a different value in the navigator tip.
    See Also