devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
18 lines (17 loc) • 1.07 kB
TypeScript
import { Section } from '../../model/section/section';
import { CommandSimpleOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
import { HeaderFooterCommandBase } from './header-footer-command-base';
export declare abstract class DifferentFirstPageAndOddEvenHeaderFooterCommandBase extends HeaderFooterCommandBase {
DEPRECATEDConvertOptionsParameter(parameter: any): boolean;
executeCore(state: SimpleCommandState, options: CommandSimpleOptions<boolean>): boolean;
protected abstract changeSectionProperty(section: Section, newValue: boolean): any;
}
export declare class DifferentFirstPageHeaderFooterCommand extends DifferentFirstPageAndOddEvenHeaderFooterCommandBase {
getValue(): boolean;
protected changeSectionProperty(section: Section, newValue: boolean): void;
}
export declare class DifferentOddEvenHeaderFooterCommand extends DifferentFirstPageAndOddEvenHeaderFooterCommandBase {
getValue(): boolean;
protected changeSectionProperty(_section: Section, newValue: boolean): void;
}