/// <summary>
 /// Initializes a new instance of the <see cref="ArcmapPickCandidate"/> class.
 /// </summary>
 /// <param name="identifyOby">Identified object.</param>
 /// <param name="distance">Distance from the identified object to the mouse click.</param>
 public ArcmapPickCandidate(IIdentifyObj identifyOby, double distance)
 {
     IdentifyObj          = identifyOby;
     DistanceToClickPoint = distance;
     GeometryType         = ArcmapUtils.DetectGeometryBaseType(Feature.Shape);
 }