'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.
Property | Description |
---|---|
Group | Gets the Group object associated with the group header being created. |
Text | Gets or sets the text to be displayed in the group header. |
Example
This example uses the FetchGroupText event.
See Also