/// <summary>
 /// Constructor
 /// </summary>
 /// <param name="hitType">The area type at the location</param>
 /// <param name="hitRow">The row at the location</param>
 internal DataListHitTestInfo(DataListHitType hitType, int hitRow)
 {
     this.Type = hitType;
     this.Row  = hitRow;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="hitType">The area type at the location</param>
 /// <param name="hitRow">The row at the location</param>
 internal DataListHitTestInfo(DataListHitType hitType, int hitRow)
 {
     this.Type = hitType;
     this.Row = hitRow;
 }
        //=====================================================================

        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="hitType">The area type at the location</param>
        /// <overloads>There are two overloads for the constructor</overloads>
        internal DataListHitTestInfo(DataListHitType hitType) : this(hitType, -1)
        {
        }
 //=====================================================================
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="hitType">The area type at the location</param>
 /// <overloads>There are two overloads for the constructor</overloads>
 internal DataListHitTestInfo(DataListHitType hitType)
     : this(hitType, -1)
 {
 }