devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 364 B
JavaScript
import { BaseVisualizer } from './base-visualizer';
export class AutoScrollVisualizer extends BaseVisualizer {
show(absBounds) {
this.pageIndex = -1;
this.bounds = absBounds;
this.tip = null;
this.isTextBox = false;
this.rotation = 0;
this.isAnchoredObject = false;
this.raiseShow();
}
}