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) 997 B
import { ColorModelInfo } from '../../../../model/color/color-model-info'; import { ColorProvider } from '../../../../model/color/color-provider'; import { ShadingInfo } from '../../../../model/shadings/shading-info'; import { RtfBuilder } from '../rtf-builder'; import { RtfExportHelper } from './rtf-export-helper'; export declare class RtfShadingInfoExportHelper { static exportShadingPattern(rtfBuilder: RtfBuilder, colorProvider: ColorProvider, info: ShadingInfo, command: string): void; static exportShadingForeColorIndex(rtfBuilder: RtfBuilder, helper: RtfExportHelper, colorProvider: ColorProvider, info: ShadingInfo, command: string): void; static exportShadingBackColorIndex(rtfBuilder: RtfBuilder, helper: RtfExportHelper, colorProvider: ColorProvider, info: ShadingInfo, command: string): void; static exportShadingColorIndexCore(rtfBuilder: RtfBuilder, helper: RtfExportHelper, colorProvider: ColorProvider, color: ColorModelInfo, command: string): void; }