devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
11 lines (10 loc) • 330 B
TypeScript
import { DrawingStrokeUnderlineType } from './enums';
import { IDrawingFill } from './interfaces';
export declare class Outline {
private _fill;
constructor(fill?: IDrawingFill);
get fill(): IDrawingFill;
set fill(value: IDrawingFill);
get type(): DrawingStrokeUnderlineType;
clone(): Outline;
}