UNPKG

devexpress-richedit

Version:

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

13 lines (12 loc) 832 B
import { IParagraphPropertyDescriptor } from '../../model/paragraph/paragraph-property-descriptors'; import { ShadingInfo } from '../../model/shadings/shading-info'; import { CommandSimpleOptions } from '../command-base'; import { IntervalCommandStateEx } from '../command-states'; import { ChangeParagraphPropertiesCommandBase } from './change-paragraph-properties-command-base'; export declare class ChangeParagraphBackColorCommand extends ChangeParagraphPropertiesCommandBase<ShadingInfo, number> { executeCore(_state: IntervalCommandStateEx, options: CommandSimpleOptions<ShadingInfo>): boolean; getDescriptor(): IParagraphPropertyDescriptor<ShadingInfo>; getValueForState(val: ShadingInfo): number; isLockUpdateValue(): boolean; DEPRECATEDConvertOptionsParameter(parameter: any): ShadingInfo; }