UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

37 lines (36 loc) 941 B
export class EventArgs { } export class CalculateDocumentVariableEventArgs extends EventArgs { variableName; args; value; keepLastParagraph; fieldInterval; constructor(fieldInterval, variableName, args) { super(); this.fieldInterval = fieldInterval; this.variableName = variableName; this.args = args; this.value = null; this.keepLastParagraph = false; } } export class DocumentVariableData { callback; variableName; args; fieldInterval; constructor(callback, fieldInterval, variableName, args) { this.callback = callback; this.fieldInterval = fieldInterval; this.variableName = variableName; this.args = args; } } export class CalculateDocumentVariableAsyncEventArgs extends EventArgs { data; constructor(data) { super(); this.data = data; } }