CustomTickmarkTextEventHandler Delegate
Represents a method that handles the ArcScale.CustomTickmarkText and LinearScale.CustomTickmarkText events.
Namespace: DevExpress.XtraGauges.Core.Model
Assembly: DevExpress.XtraGauges.v24.1.Core.dll
NuGet Package: DevExpress.Gauges.Core
Declaration
Parameters
Name | Type | Description |
---|---|---|
ea | CustomTickmarkTextEventArgs | A CustomTickmarkTextEventArgs object that provides data for the events. |
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