UNPKG

devexpress-richedit

Version:

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

7 lines (6 loc) 286 B
import { DXColor } from '../../../../../../model/color/dx-color'; export class DrawingEffectsImportHelper { static getColorProperty(colorValue) { return DXColor.fromRgb(colorValue & 0x000000FF, (colorValue & 0x0000FF00) >> 8, (colorValue & 0x00FF0000) >> 16); } }