devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
11 lines (10 loc) • 520 B
TypeScript
import { CharacterProperties } from '../../character/character-properties';
import { FontMeasurer } from '../../fonts/measurer';
import { HashBasedCache } from '../hash-based-cache';
export declare class CharacterPropertiesCache extends HashBasedCache<CharacterProperties> {
private static _rareCharProperty;
static getRareCharProperty(fontMeasurer: FontMeasurer): CharacterProperties;
resetSizes(): void;
copyFrom(obj: CharacterPropertiesCache): void;
clone(): CharacterPropertiesCache;
}