ArcMapAddinDistanceAndDirection.ViewModels.RangeViewModel.CreateMapElement C# (CSharp) Метод

CreateMapElement() приватный Метод

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
Результат void
        internal override void CreateMapElement()
        {
            // do we have enough data?
            if (!CanCreateElement)
                return;

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

                DrawRings();
            }

            DrawRadials();

            Reset(false);
        }