Example #1
0
 public static TextViewPosition Max(TextViewPosition a, TextViewPosition b)
 {
     return(a > b ? a : b);
 }
Example #2
0
        //public bool IsEmpty { get { return Line <= 0 && Column <= 0; } }

        public bool Equals(TextViewPosition other)
        {
            return(_column == other._column && _line == other._line);
        }
Example #3
0
 public static TextViewPosition Min(TextViewPosition a, TextViewPosition b)
 {
     return(a > b ? b : a);
 }