UNPKG

devexpress-diagram

Version:

DevExpress Diagram Control

13 lines (11 loc) 435 B
import { DiagramItem } from "../../Model/DiagramItem"; import { SimpleCommandBase } from "../SimpleCommandBase"; export abstract class StylePropertyCommandBase extends SimpleCommandBase { abstract getValue(): any; abstract getStyleObj(item: DiagramItem): any; abstract getDefaultStyleObj(): any; abstract getStyleProperty(): string; protected lockInputPositionUpdating() { return true; } }