devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 658 B
TypeScript
import { ICloneable, IEquatable } from '@devexpress/utils/lib/types';
import { FontTypeHint, ThemeFontType } from './enums';
export declare class CompositeFontInfo implements IEquatable<CompositeFontInfo>, ICloneable<CompositeFontInfo> {
constructor();
asciiFontName: string;
hightAnsiFontName: string;
complexScriptFontName: string;
eastAsiaFontName: string;
asciiThemeFont: ThemeFontType;
hightAnsiThemeFont: ThemeFontType;
complexScriptThemeFont: ThemeFontType;
eastAsiaThemeFont: ThemeFontType;
hintFont: FontTypeHint;
equals(obj: CompositeFontInfo): boolean;
clone(): CompositeFontInfo;
}