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) 395 B
import { DrawingFillType, DrawingUnderlineFillType } from './enums'; export declare class DrawingFill { static Automatic: DrawingFill; static None: DrawingFill; static Group: DrawingFill; fillType: DrawingFillType; constructor(fillType: DrawingFillType); get type(): DrawingUnderlineFillType; clone(): DrawingFill; equals(obj: DrawingFill): boolean; }