devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
19 lines (18 loc) • 855 B
TypeScript
import { ICommandOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
import { TableCommandBase } from './table-command-base';
export declare class AutoFitCommandBase extends TableCommandBase<SimpleCommandState> {
getState(): SimpleCommandState;
isEnabled(): boolean;
}
export declare class AutoFitContentsCommand extends AutoFitCommandBase {
executeCore(state: SimpleCommandState, parameter: ICommandOptions): boolean;
}
export declare class AutoFitWindowCommand extends AutoFitCommandBase {
executeCore(state: SimpleCommandState, parameter: ICommandOptions): boolean;
}
export declare class FixedColumnWidthCommand extends AutoFitCommandBase {
executeCore(state: SimpleCommandState, parameter: ICommandOptions): boolean;
private getGrid;
private getAvaliableWidth_px;
}