ArcMapAddinDistanceAndDirection.ViewModels.TabBaseViewModel.Reset C# (CSharp) Метод

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

Method used to totally reset the tool reset points, feedback clear out textboxes
private Reset ( bool toolReset ) : void
toolReset bool
Результат void
        internal virtual void Reset(bool toolReset)
        {
            if (toolReset)
            {
                DeactivateTool("Esri_ArcMapAddinDistanceAndDirection_MapPointTool");
            }

            ResetPoints();
            Point1 = null;
            Point2 = null;
            Point1Formatted = string.Empty;
            Point2Formatted = string.Empty;

            ResetFeedback();

            Distance = 0.0;

            ClearTempGraphics();
        }
        /// <summary>