Skip to main content

CustomTickmarkTextEventHandler Delegate

Represents a method that handles the ArcScale.CustomTickmarkText and LinearScale.CustomTickmarkText events.

Namespace: DevExpress.XtraGauges.Core.Model

Assembly: DevExpress.XtraGauges.v23.2.Core.dll

NuGet Package: DevExpress.Gauges.Core

Declaration

public delegate void CustomTickmarkTextEventHandler(
    CustomTickmarkTextEventArgs ea
);

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