Esempio n. 1
0
        public override Object Clone()
        {
            ChartRecord rec = new ChartRecord();

            rec.field_1_x      = field_1_x;
            rec.field_2_y      = field_2_y;
            rec.field_3_width  = field_3_width;
            rec.field_4_height = field_4_height;
            return(rec);
        }
Esempio n. 2
0
 private ChartRecord CreateChartRecord(int x, int y, int width, int height)
 {
     ChartRecord r = new ChartRecord();
     r.X = (x);
     r.Y = (y);
     r.Width = (width);
     r.Height = (height);
     return r;
 }
Esempio n. 3
0
 private HSSFChart(HSSFSheet sheet, ChartRecord chartRecord)
 {
     this.chartRecord = chartRecord;
     this.sheet = sheet;
 }
Esempio n. 4
0
        public override Object Clone()
        {
            ChartRecord rec = new ChartRecord();

            rec.field_1_x = field_1_x;
            rec.field_2_y = field_2_y;
            rec.field_3_width = field_3_width;
            rec.field_4_height = field_4_height;
            return rec;
        }