@syncfusion/ej2-richtexteditor
Version:
Essential JS 2 RichTextEditor component
31 lines (30 loc) • 677 B
TypeScript
/**
* Enum values for EditorManager
*/
/**
*
* @private
* @hidden
* Defines the context or contexts in which styles will be copied.
*/
export declare type IFormatPainterContext = 'Text' | 'List' | 'Table';
/**
*
* @private
* @hidden
* Defines the action values for format painter.
*/
export declare type IFormatPainterActionValue = 'format-copy' | 'format-paste' | 'escape';
/**
* Specifies the position of the toolbar.
*/
export declare enum ToolbarPosition {
/**
* Positions the toolbar at the top of the RichTextEditor.
*/
Top = "Top",
/**
* Positions the toolbar at the bottom of the RichTextEditor.
*/
Bottom = "Bottom"
}