ArcMapAddinDistanceAndDirection.ViewModels.RangeViewModel.CreateMapElement C# (CSharp) Method

CreateMapElement() private method

Method used to create the needed map elements to add to the graphics container Is called by the base class when the "Enter" key is pressed
private CreateMapElement ( ) : void
return void
        internal override void CreateMapElement()
        {
            // do we have enough data?
            if (!CanCreateElement)
                return;

            if (!IsInteractive)
            {
                base.CreateMapElement();

                DrawRings();
            }

            DrawRadials();

            Reset(false);
        }