Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / FpSpread Class / FetchGroupText Event
Example


In This Topic
    FetchGroupText Event
    In This Topic
    Occurs when spread creates the group bar.
    Syntax
    'Declaration
     
    
    Public Event FetchGroupText As FetchGroupTextEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As FetchGroupTextEventHandler
     
    AddHandler instance.FetchGroupText, handler
    public event FetchGroupTextEventHandler FetchGroupText
    Event Data

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

    PropertyDescription
    Gets the Group object associated with the group header being created.  
    Gets or sets the text to be displayed in the group header.  
    Example
    This example uses the FetchGroupText event.
    See Also