devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
15 lines (14 loc) • 513 B
TypeScript
import { ThemeDrawingColorCollection } from './theme-drawing-color-collection';
import { ThemeFontScheme } from './theme-font-scheme';
import { ThemeFormatScheme } from './theme-format-scheme';
export declare class OfficeTheme {
colors: ThemeDrawingColorCollection;
fontScheme: ThemeFontScheme;
formatScheme: ThemeFormatScheme;
name: string;
constructor();
get isValidate(): boolean;
copyFrom(sourceObj: OfficeTheme): void;
clear(): void;
clone(): OfficeTheme;
}