ActiveSubDocumentChangedEvent Class
An event that occurs when an active sub document is changed.
#Declaration
export class ActiveSubDocumentChangedEvent extends RichEditEvent<EventArgs>
#Remarks
You can define the ActiveSubDocumentChanged event handler either at the server side, at the client side, or at runtime.
Use the OnActiveSubDocumentChanged(String) method to specify the event handler.
@(Html.DevExpress().RichEdit("richEdit")
.OnActiveSubDocumentChanged("function(s,e){ /* your custom actions */ }")
// ...
The event handler receives an argument of the EventArgs type.