CustomTickmarkTextEventHandler Delegate
In This Article
Represents a method that handles the ArcScale.CustomTickmarkText and LinearScale.CustomTickmarkText events.
Namespace: DevExpress.XtraGauges.Core.Model
Assembly: DevExpress.XtraGauges.v24.2.Core.dll
NuGet Package: DevExpress.Gauges.Core
#Declaration
public delegate void CustomTickmarkTextEventHandler(
CustomTickmarkTextEventArgs ea
);
#Parameters
Name | Type | Description |
---|---|---|
ea | Custom |
A Custom |
#Remarks
When creating a CustomTickmarkTextEventHandler
delegate, you identify a method that will handle corresponding events. To associate an event with your event handler, add a delegate instance to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information on event handler delegates, see Events and Delegates in MSDN.
See Also