devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
18 lines (17 loc) • 714 B
TypeScript
import { FontInfoCache } from '../../../../../model/caches/hashed-caches/font-info-cache';
import { DocumentModel } from '../../../../../model/document-model';
import { FontInfo } from '../../../../../model/fonts/font-info';
import { RtfFontFamily } from './enums';
export declare class RtfFontInfo {
id: number;
charset: number;
name: string;
fontFamily: RtfFontFamily;
private _shouldLoad;
private _cachedInfo;
get shouldLoad(): boolean;
get cachedInfo(): FontInfo;
getCoreObjectByName(documentModel: DocumentModel): FontInfo;
static createDefaultRtfFontInfo(): RtfFontInfo;
static getFontInfo(fontInfoCache: FontInfoCache, name: string): FontInfo;
}