UNPKG

devexpress-richedit

Version:

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

23 lines (22 loc) 998 B
import { DrawingEffectStyle } from '../drawing/drawing-effect-style'; import { IDrawingFill } from '../drawing/interfaces'; import { Outline } from '../drawing/outline'; import { StyleMatrixElementType } from './enums'; export declare class ThemeFormatScheme { backgroundFillStyleList: IDrawingFill[]; fillStyleList: IDrawingFill[]; lineStyleList: Outline[]; effectStyleList: DrawingEffectStyle[]; name: string; get isValidate(): boolean; getOutlineByType(type: StyleMatrixElementType): Outline; getOutlineByIndex(index: number): Outline; getFillByType(type: StyleMatrixElementType): IDrawingFill; getFillByIndex(index: number): IDrawingFill; getEffectStyle(type: StyleMatrixElementType): DrawingEffectStyle; getElementByType<T>(type: StyleMatrixElementType, items: T[]): T; getElementByIndex<T>(index: number, items: T[]): T; checkValidation(): boolean; copyFrom(obj: ThemeFormatScheme): void; clear(): void; }