devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
20 lines (19 loc) • 1.07 kB
TypeScript
import { BorderLineStyle } from '../../model/borders/enums';
import { CommandBase, CommandSimpleOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
export declare class ChangeTableBorderColorRepositoryItemCommand extends CommandBase<SimpleCommandState> {
getState(): SimpleCommandState;
isEnabled(): boolean;
executeCore(_state: SimpleCommandState, options: CommandSimpleOptions<number>): boolean;
DEPRECATEDConvertOptionsParameter(parameter: any): number;
}
export declare class ChangeTableBorderWidthRepositoryItemCommand extends CommandBase<SimpleCommandState> {
getState(): SimpleCommandState;
isEnabled(): boolean;
executeCore(_state: SimpleCommandState, options: CommandSimpleOptions<number>): boolean;
}
export declare class ChangeTableBorderStyleRepositoryItemCommand extends CommandBase<SimpleCommandState> {
getState(): SimpleCommandState;
isEnabled(): boolean;
executeCore(_state: SimpleCommandState, options: CommandSimpleOptions<BorderLineStyle>): boolean;
}