devexpress-diagram
Version:
DevExpress Diagram Control
10 lines (8 loc) • 402 B
text/typescript
import { Point } from "@devexpress/utils/lib/geometry/point";
import { PasteSelectionCommandBase } from "./PasteSelectionCommandBase";
import { DiagramItem } from "../../Model/DiagramItem";
export class PasteSelectionCommand extends PasteSelectionCommandBase {
protected getEventPositionOffset(_items: DiagramItem[], _evtPosition?: Point): Point {
return new Point(0, 0);
}
}