devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
11 lines (10 loc) • 507 B
TypeScript
import { FontInfo } from '../../../common/model/fonts/font-info';
import { ModelFontApi } from '../fonts/model-font';
import { Collection } from './collection';
export declare class FontCollection extends Collection<ModelFontApi, FontInfo> {
protected _getItem(internalItem: FontInfo): ModelFontApi;
protected _getCoreItems(): FontInfo[];
getByName(name: string): ModelFontApi | null;
create(name: string, cssName?: string): ModelFontApi | null;
getAllFontNames(): string[];
}