Xamarin.Android | ComponentOne
C1.Android.Grid Assembly / C1.Android.Grid Namespace / GridBase Class / Refreshing Event


In This Topic
    Refreshing Event
    In This Topic
    Occurs when the user pulls the grid to be refreshed.
    Syntax
    'Declaration
     
    
    Public Event Refreshing As EventHandler(Of GridRefreshEventArgs)
    'Usage
     
    
    Dim instance As GridBase
    Dim handler As EventHandler(Of GridRefreshEventArgs)
     
    AddHandler instance.Refreshing, handler
    public event EventHandler<GridRefreshEventArgs> Refreshing
    Event Data

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

    PropertyDescription
    Gets or sets a value indicating whether the associated event should be canceled.  
    See Also