devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 761 B
TypeScript
import { Section } from '../../model/section/section';
import { HeaderFooterSubDocumentInfoBase } from '../../model/sub-document-infos';
import { IRichEditControl } from '../../interfaces/i-rich-edit-core';
import { CommandBase } from '../command-base';
import { SimpleCommandState } from '../command-states';
export declare class HeaderFooterCommandBase extends CommandBase<SimpleCommandState> {
getState(): SimpleCommandState;
isEnabled(): boolean;
protected getValue(): any;
protected getSectionIndex(pageIndex: number): number;
static getObjectsCache(isHeader: boolean, control: IRichEditControl): HeaderFooterSubDocumentInfoBase[];
protected static getSectionHeadersFooters(isHeader: boolean, section: Section): any;
}