Esempio n. 1
0
        public virtual bool UpdateSelected(Point point, ref LeShape shape0)
        {
            if (Boundary.Contains(point))
            {
                selected = true;
                shape0   = this;
            }
            else
            {
                selected = false;
            }

            return(selected);
        }
Esempio n. 2
0
 internal void AddFriend(LeShape leShape)
 {
 }
Esempio n. 3
0
 internal void Add(LeShape leShape)
 {
     ShapeList.Add(leShape);
     XMLShapes.Total++;
 }
Esempio n. 4
0
 internal void Remove(LeShape leShape)
 {
     ShapeList.Remove(leShape);
 }