Select to view content in your preferred language

Move multiple graphics at once

821
2
09-22-2010 12:41 PM
FrancoisChartrand
Emerging Contributor
Hi,

Is it possible to move multiple graphics at once (using the Editor class or anything else)?

Thank you
0 Kudos
2 Replies
JenniferNery
Esri Regular Contributor
There is no support for moving multiple graphics at once.
0 Kudos
dotMorten_esri
Esri Notable Contributor
With a little coding you could do that.
First listen for mouse down and set e.Handled = true to prevent the map from panning when you drag.
Then on mousemove, go through all the features you want to move and offset the points/vertices the amount the mouse moved since the last event multiplied by the map.Resolution.
0 Kudos