UNPKG

devexpress-diagram

Version:

DevExpress Diagram Control

13 lines (10 loc) 423 B
import { ChangeConnectorPropertyCommand } from "./ChangeConnectorPropertyCommand"; import { ConnectorLineOption } from "../../Model/Connectors/ConnectorProperties"; export class ChangeConnectorLineOptionCommand extends ChangeConnectorPropertyCommand { getPropertyName(): string { return "lineOption"; } getPropertyDefaultValue(): any { return ConnectorLineOption.Straight; } }