I have a custom pane with a VM behind it, and at some point it starts vertex editing of the currently selected feature via
var editCommand = FrameworkApplication.GetPlugInWrapper("esri_editing_EditVerticesNormal") as ICommand;
if (editCommand != null && editCommand.CanExecute(null))
{
editCommand.Execute(null);
}In this state it is possible to select vertices of the geometry, either by lasso or by clicking them in the list in the Modify Features pane. Can I access this selection?