devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
19 lines (18 loc) • 879 B
TypeScript
import { SectionStartType } from '../../model/section/enums';
import { CommandBase, CommandOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
export declare abstract class InsertSectionBreakCommand extends CommandBase<SimpleCommandState> {
getState(): SimpleCommandState;
isEnabled(): boolean;
executeCore(_state: SimpleCommandState, options: CommandOptions): boolean;
abstract getStartType(): SectionStartType;
}
export declare class InsertSectionBreakNextPageCommand extends InsertSectionBreakCommand {
getStartType(): SectionStartType;
}
export declare class InsertSectionBreakEvenPageCommand extends InsertSectionBreakCommand {
getStartType(): SectionStartType;
}
export declare class InsertSectionBreakOddPageCommand extends InsertSectionBreakCommand {
getStartType(): SectionStartType;
}