UNPKG

devexpress-richedit

Version:

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

12 lines (11 loc) 428 B
import { RibbonItemBase, RibbonItemType } from './base'; export class RibbonColorBoxItem extends RibbonItemBase { constructor(id, text, value, options = {}) { super(id, options.beginGroup); this.type = RibbonItemType.ColorBox; this.text = text; this.value = value; this.localizationId = options.localizationId; this.textOptions = options.textOptions ?? {}; } }