public DVAxisAggregate(RecordStream rs, ChartRecordAggregate container, AxisRecord axis) : base(RuleName_DVAXIS, container) { if (axis == null) { this.axis = (AxisRecord)rs.GetNext(); rs.GetNext(); } else { this.axis = axis; } if (rs.PeekNextChartSid() == ValueRangeRecord.sid) valueRange = (ValueRangeRecord)rs.GetNext(); if (rs.PeekNextChartSid() == YMultRecord.sid) axm = new AXMAggregate(rs, this); axs = new AXSAggregate(rs, this); if (rs.PeekNextChartSid() == CrtMlFrtRecord.sid) crtmlfrt = new CrtMlFrtAggregate(rs, this); Record r = rs.GetNext();//EndRecord Debug.Assert(r.GetType() == typeof(EndRecord)); }
public override Object Clone() { AxisRecord rec = new AxisRecord(); rec.field_1_axisType = field_1_axisType; rec.field_2_reserved1 = field_2_reserved1; rec.field_3_reserved2 = field_3_reserved2; rec.field_4_reserved3 = field_4_reserved3; rec.field_5_reserved4 = field_5_reserved4; return(rec); }
public SeriesAxisAggregate(RecordStream rs, ChartRecordAggregate container) : base("SERIESAXIS", container) { axis = (AxisRecord)rs.GetNext(); rs.GetNext(); if (rs.PeekNextChartSid() == CatSerRangeRecord.sid) catSerRange = (CatSerRangeRecord)rs.GetNext(); axs = new AXSAggregate(rs, this); if (rs.PeekNextChartSid() == CrtMlFrtRecord.sid) crtmlfrt = new CrtMlFrtAggregate(rs, this); Record r = rs.GetNext();//EndRecord Debug.Assert(r.GetType() == typeof(EndRecord)); }
public IVAxisAggregate(RecordStream rs, ChartRecordAggregate container, AxisRecord axis) : base(RuleName_IVAXIS, container) { this.axis = axis; if (rs.PeekNextChartSid() == CatSerRangeRecord.sid) catSerRange = (CatSerRangeRecord)rs.GetNext(); Debug.Assert(rs.PeekNextChartSid() == AxcExtRecord.sid); axcExt = (AxcExtRecord)rs.GetNext(); if (rs.PeekNextChartSid() == CatLabRecord.sid) catLab = (CatLabRecord)rs.GetNext(); axs = new AXSAggregate(rs, this); while (rs.PeekNextChartSid() == CrtMlFrtRecord.sid) crtmlfrtList.Add(new CrtMlFrtAggregate(rs, this)); Record r = rs.GetNext();//EndRecord Debug.Assert(r.GetType() == typeof(EndRecord)); }
public override Object Clone() { AxisRecord rec = new AxisRecord(); rec.field_1_axisType = field_1_axisType; rec.field_2_reserved1 = field_2_reserved1; rec.field_3_reserved2 = field_3_reserved2; rec.field_4_reserved3 = field_4_reserved3; rec.field_5_reserved4 = field_5_reserved4; return rec; }