devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
28 lines (27 loc) • 1.35 kB
TypeScript
import { CommandBase, CommandSimpleOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
export declare class GoToRecordCommandBase extends CommandBase<SimpleCommandState> {
getState(): SimpleCommandState;
isEnabled(): boolean;
canModify(): boolean;
DEPRECATEDConvertOptionsParameter(parameter: any): any;
executeCore(_state: SimpleCommandState, options: CommandSimpleOptions<number>): boolean;
protected canNavigate(): boolean;
protected calculateNextRecordIndex(recordIndex: number): number;
}
export declare class GoToFirstDataRecordCommand extends GoToRecordCommandBase {
protected canNavigate(): boolean;
protected calculateNextRecordIndex(_recordIndex: number): number;
}
export declare class GoToPreviousDataRecordCommand extends GoToRecordCommandBase {
protected canNavigate(): boolean;
protected calculateNextRecordIndex(recordIndex: number): number;
}
export declare class GoToNextDataRecordCommand extends GoToRecordCommandBase {
protected canNavigate(): boolean;
protected calculateNextRecordIndex(recordIndex: number): number;
}
export declare class GoToLastDataRecordCommand extends GoToRecordCommandBase {
protected canNavigate(): boolean;
protected calculateNextRecordIndex(_recordIndex: number): number;
}