moveSelectedElementWithDelta method
Moves the selected element by the specified distances along the x-axis and y-axis.
Parameters:
deltaX
— The distance to move the selected element along the x-axis, in the units of the associated ArcGISMapViewController spatial reference.deltaY
— The distance to move the selected element along the y-axis, in the units of the associated ArcGISMapViewController spatial reference.
Implementation
void moveSelectedElementWithDelta({
required double deltaX,
required double deltaY,
}) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GeometryEditor_moveSelectedElementWithDelta(
_handle,
deltaX,
deltaY,
errorHandler,
);
});
}