Esempio n. 1
0
 /**
  * Adds a drawing to the drawing group
  *
  * @param d the drawing to add
  */
 public void addDrawing(DrawingGroupObject d)
 {
     drawings.Add(d);
     maxobjectId = System.Math.Max(maxobjectId, d.getObjectId());
     maxShapeId  = System.Math.Max(maxShapeId, d.getShapeId());
 }