devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
16 lines (15 loc) • 940 B
TypeScript
import { ISectionPropertyDescriptor } from '../../model/section/section-property-descriptor';
import { CommandSimpleOptions } from '../command-base';
import { IntervalCommandStateEx } from '../command-states';
import { ChangeSectionPropertiesCommandBase } from './change-section-properties-command-base';
export declare class SetLandscapePageOrientationCommand extends ChangeSectionPropertiesCommandBase<boolean, boolean> {
protected getDescriptor(): ISectionPropertyDescriptor<boolean>;
DEPRECATEDConvertOptionsParameter(_parameter: any): boolean;
getStateValue(): boolean;
protected getRelatedCommands(): Record<number, boolean>;
executeCore(state: IntervalCommandStateEx, options: CommandSimpleOptions<boolean>): boolean;
protected isLandscape(): boolean;
}
export declare class SetPortraitPageOrientationCommand extends SetLandscapePageOrientationCommand {
protected isLandscape(): boolean;
}