public LDAggregate(RecordStream rs, ChartRecordAggregate container) : base(RuleName_LD, container) { legend = (LegendRecord)rs.GetNext(); rs.GetNext();//BeginRecord pos = (PosRecord)rs.GetNext(); attachedLabel = new AttachedLabelAggregate(rs, this); if (rs.PeekNextChartSid() == FrameRecord.sid) { frame = new FrameAggregate(rs, this); } if (rs.PeekNextChartSid() == CrtLayout12Record.sid) { crtLayout = (CrtLayout12Record)rs.GetNext(); } if (rs.PeekNextChartSid() == TextPropsStreamRecord.sid) { textProps = new TextPropsAggregate(rs, this); } if (rs.PeekNextChartSid() == CrtMlFrtRecord.sid) { crtMlFrt = new CrtMlFrtAggregate(rs, this); } Record r = rs.GetNext();//EndRecord Debug.Assert(r.GetType() == typeof(EndRecord)); }
public AttachedLabelAggregate(RecordStream rs, ChartRecordAggregate container) : base(RuleName_ATTACHEDLABEL, container) { ChartSheetAggregate cs = GetContainer <ChartSheetAggregate>(ChartRecordAggregate.RuleName_CHARTSHEET); _isFirst = cs.AttachLabelCount == 0; cs.AttachLabelCount++; text = (TextRecord)rs.GetNext(); rs.GetNext();//BeginRecord pos = (PosRecord)rs.GetNext(); if (rs.PeekNextChartSid() == FontXRecord.sid) { fontX = (FontXRecord)rs.GetNext(); } if (rs.PeekNextChartSid() == AlRunsRecord.sid) { alRuns = (AlRunsRecord)rs.GetNext(); } brai = (BRAIRecord)rs.GetNext(); if (rs.PeekNextChartSid() == SeriesTextRecord.sid) { seriesText = (SeriesTextRecord)rs.GetNext(); } if (rs.PeekNextChartSid() == FrameRecord.sid) { frame = new FrameAggregate(rs, this); } if (rs.PeekNextChartSid() == ObjectLinkRecord.sid) { objectLink = (ObjectLinkRecord)rs.GetNext(); } if (rs.PeekNextChartSid() == DataLabExtContentsRecord.sid) { dataLab = (DataLabExtContentsRecord)rs.GetNext(); } if (rs.PeekNextChartSid() == CrtLayout12Record.sid) { crtLayout = (CrtLayout12Record)rs.GetNext(); } if (rs.PeekNextChartSid() == TextPropsStreamRecord.sid) { textProps = new TextPropsAggregate(rs, this); } if (rs.PeekNextChartSid() == CrtMlFrtRecord.sid) { crtMlFrt = new CrtMlFrtAggregate(rs, this); } Record r = rs.GetNext();//EndRecord Debug.Assert(r.GetType() == typeof(EndRecord)); }
public AxesAggregate(RecordStream rs, ChartRecordAggregate container) : base(RuleName_AXES, container) { if (rs.PeekNextChartSid() == AxisRecord.sid) { AxisRecord axis = (AxisRecord)rs.GetNext(); rs.GetNext(); int sid = rs.PeekNextChartSid(); if (sid == CatSerRangeRecord.sid) { ivaxis = new IVAxisAggregate(rs, this, axis); } else if (sid == ValueRangeRecord.sid) { dvaxis = new DVAxisAggregate(rs, this, axis); } else { throw new InvalidOperationException(string.Format("Invalid record sid=0x{0:X}. Shoud be CatSerRangeRecord or ValueRangeRecord", sid)); } Debug.Assert(rs.PeekNextChartSid() == AxisRecord.sid); dvaxisSecond = new DVAxisAggregate(rs, this, null); if (rs.PeekNextChartSid() == AxisRecord.sid) { seriesAxis = new SeriesAxisAggregate(rs, this); } while (rs.PeekNextChartSid() == TextRecord.sid) { attachedLabelList.Add(new AttachedLabelAggregate(rs, this)); } if (rs.PeekNextChartSid() == PlotAreaRecord.sid) { plotArea = (PlotAreaRecord)rs.GetNext(); if (rs.PeekNextChartSid() == FrameRecord.sid) { frame = new FrameAggregate(rs, this); } } } }
public ChartFormatsAggregate(RecordStream rs, ChartRecordAggregate container) : base(RuleName_CHARTFOMATS, container) { Debug.Assert(rs.PeekNextChartSid() == ChartRecord.sid); chart = (ChartRecord)rs.GetNext(); rs.GetNext(); while (rs.PeekNextChartSid() == FrtFontListRecord.sid) { fontList.Add(new FontListAggregate(rs, this)); } Debug.Assert(rs.PeekNextChartSid() == SCLRecord.sid); scl = (SCLRecord)rs.GetNext(); plotGrowth = (PlotGrowthRecord)rs.GetNext(); if (rs.PeekNextChartSid() == FrameRecord.sid) { frame = new FrameAggregate(rs, this); } while (rs.PeekNextChartSid() == SeriesRecord.sid) { seriesFormatList.Add(new SeriesFormatAggregate(rs, this)); } while (rs.PeekNextChartSid() == DataFormatRecord.sid) { ssList.Add(new SSAggregate(rs, this)); } Debug.Assert(rs.PeekNextChartSid() == ShtPropsRecord.sid); shtProps = (ShtPropsRecord)rs.GetNext(); while (rs.PeekNextChartSid() == DefaultTextRecord.sid || rs.PeekNextChartSid() == DataLabExtRecord.sid) { dftTextList.Add(new DFTTextAggregate(rs, this)); } Debug.Assert(rs.PeekNextChartSid() == AxesUsedRecord.sid); axesUsed = (AxesUsedRecord)rs.GetNext(); Debug.Assert(rs.PeekNextChartSid() == AxisParentRecord.sid); axisParent1 = new AxisParentAggregate(rs, this); if (rs.PeekNextChartSid() == AxisParentRecord.sid) { axisParent2 = new AxisParentAggregate(rs, this); } if (rs.PeekNextChartSid() == CrtLayout12ARecord.sid) { crt12A = (CrtLayout12ARecord)rs.GetNext(); } if (rs.PeekNextChartSid() == DatRecord.sid) { dat = new DatAggregate(rs, container); } if (rs.PeekNextChartSid() == TextRecord.sid) { while (rs.PeekNextChartSid() == TextRecord.sid) { attachedLabelList.Add(new AttachedLabelAggregate(rs, this)); } } if (rs.PeekNextChartSid() == CrtMlFrtRecord.sid) { crtMlFrt = new CrtMlFrtAggregate(rs, container); } while (rs.PeekNextChartSid() == DataLabExtRecord.sid || rs.PeekNextChartSid() == TextRecord.sid) { cfalList.Add(new ChartFormatsAttachedLabelAggregate(rs, this)); } if (rs.PeekNextChartSid() == TextPropsStreamRecord.sid) { textProps = new TextPropsAggregate(rs, container); } while (rs.PeekNextChartSid() == CrtMlFrtRecord.sid) { mlfrtList.Add(new CrtMlFrtAggregate(rs, container)); } Record r = rs.GetNext();//EndRecord Debug.Assert(r.GetType() == typeof(EndRecord)); }