Пример #1
0
 public Shapes(int x, int y, EnumShapeType type, EnumBrushingColor brushcolor, EnumBorderColor bordercolor)
 {
     this.xCoord      = x;
     this.yCoord      = y;
     this.shapeType   = type;
     this.brushColor  = brushcolor;
     this.borderColor = bordercolor;
 }
Пример #2
0
 public Shapes()
 {
     this.xCoord      = 00;
     this.yCoord      = 00;
     this.shapeType   = EnumShapeType.undefined;
     this.brushColor  = EnumBrushingColor.undefined;
     this.borderColor = EnumBorderColor.undefined;
 }