Back to Devexpress

HorizontalRulerVisibleChangedEvent Class

aspnetcore-js-devexpress-dot-richedit-5e706b04.md

latest1.9 KB
Original Source

HorizontalRulerVisibleChangedEvent Class

An event that fires when horizontal ruler visibility changes.

Declaration

ts
export class HorizontalRulerVisibleChangedEvent extends RichEditEvent<HorizontalRulerVisibleChangedEventArgs>

Remarks

You can handle the HorizontalRulerVisibleChangedEvent at runtime. Use the horizontalRulerVisibleChanged property to access addHandler(handler), removeHandler(handler), and clearHandlers methods. These methods allow you to add and remove event handlers dynamically.

javascript
richEdit.events.horizontalRulerVisibleChanged.addHandler(function(s, e) {
  console.log('The horizontal ruler visibility has changed.');
});

The event handler uses argument properties of the HorizontalRulerVisibleChangedEventArgs type.

Inherited Members

addHandler(handler)

clearHandlers

isEmpty

removeHandler(handler)

Inheritance

Event<TSource, TEventArgs> RichEditEvent<TEventArgs> HorizontalRulerVisibleChangedEvent