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);
        }