ArcMapAddinDistanceAndDirection.ViewModels.RangeViewModel.CreateMapElement C# (CSharp) Méthode

CreateMapElement() private méthode

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
Résultat void
        internal override void CreateMapElement()
        {
            // do we have enough data?
            if (!CanCreateElement)
                return;

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

                DrawRings();
            }

            DrawRadials();

            Reset(false);
        }