I'm using the Draw class to let the user draw different kinds of graphics on the map. The Draw polyline sample works really well. Now I would like to let the user pause drawing and then resume the in-progress drawing. Is this possible using the Draw class?
I don't see anything on Draw or DrawAction that would let me pause and resume, which would be exactly what I want. What about cancelling the drawing, saving the vertices in memory, and then adding those vertices to a new Draw or DrawAction? Is that possible, and if so, how is it done?
This is similar to my previous question about doing something similar with SketchViewModel. This new question is about Draw as opposed to SketchViewModel.