public LdSequence(IStreamReader reader) : base(reader) { /// Legend Begin Pos ATTACHEDLABEL [FRAME] [CrtLayout12] [TEXTPROPS] [CRTMLFRT] End // Legend this.Legend = (Legend)BiffRecord.ReadRecord(reader); // Begin this.Begin = (Begin)BiffRecord.ReadRecord(reader); // Pos this.Pos = (Pos)BiffRecord.ReadRecord(reader); // [ATTACHEDLABEL] this.AttachedLabelSequence = new AttachedLabelSequence(reader); // [FRAME] if (BiffRecord.GetNextRecordType(reader) == RecordType.Frame) { this.FrameSequence = new FrameSequence(reader); } // [CrtLayout12] if (BiffRecord.GetNextRecordType(reader) == RecordType.CrtLayout12) { this.CrtLayout12 = (CrtLayout12)BiffRecord.ReadRecord(reader); } // [TEXTPROPS] if (BiffRecord.GetNextRecordType(reader) == RecordType.RichTextStream || BiffRecord.GetNextRecordType(reader) == RecordType.TextPropsStream) { this.TextPropsSequence = new TextPropsSequence(reader); } //[CRTMLFRT] if (BiffRecord.GetNextRecordType(reader) == RecordType.CrtMlFrt) { this.CrtMlfrtSequence = new CrtMlfrtSequence(reader); } // End this.End = (End)BiffRecord.ReadRecord(reader); }
public AxesSequence(IStreamReader reader) : base(reader) { //AXES = [IVAXIS DVAXIS [SERIESAXIS] / DVAXIS DVAXIS] *3ATTACHEDLABEL [PlotArea FRAME] // [IVAXIS DVAXIS [SERIESAXIS] / DVAXIS DVAXIS] if (BiffRecord.GetNextRecordType(reader) == RecordType.Axis) { long position = reader.BaseStream.Position; Axis axis = (Axis)BiffRecord.ReadRecord(reader); Begin begin = (Begin)BiffRecord.ReadRecord(reader); if (BiffRecord.GetNextRecordType(reader) == RecordType.CatSerRange || BiffRecord.GetNextRecordType(reader) == RecordType.AxcExt) { reader.BaseStream.Position = position; ChartAxisIdGenerator.Instance.StartNewAxisGroup(); //IVAXIS this.IvAxisSequence = new IvAxisSequence(reader); //DVAXIS this.DvAxisSequence = new DvAxisSequence(reader); //[SERIESAXIS] if (BiffRecord.GetNextRecordType(reader) == RecordType.Axis) { this.SeriesAxisSequence = new IvAxisSequence(reader); } } else { reader.BaseStream.Position = position; ChartAxisIdGenerator.Instance.StartNewAxisGroup(); //DVAXIS this.DvAxisSequence = new DvAxisSequence(reader); //DVAXIS this.DvAxisSequence2 = new DvAxisSequence(reader); } } //*3ATTACHEDLABEL this.AttachedLabelSequences = new List <AttachedLabelSequence>(); while (BiffRecord.GetNextRecordType(reader) == RecordType.Text) { this.AttachedLabelSequences.Add(new AttachedLabelSequence(reader)); } //[PlotArea FRAME] if (BiffRecord.GetNextRecordType(reader) == RecordType.PlotArea) { this.PlotArea = (PlotArea)BiffRecord.ReadRecord(reader); this.Frame = new FrameSequence(reader); } }
public ChartFormatsSequence(IStreamReader reader) : base(reader) { // CHARTFOMATS = Chart Begin *2FONTLIST Scl PlotGrowth [FRAME] *SERIESFORMAT *SS ShtProps // *2DFTTEXT AxesUsed 1*2AXISPARENT [CrtLayout12A] [DAT] *ATTACHEDLABEL [CRTMLFRT] // *([DataLabExt StartObject] ATTACHEDLABEL [EndObject]) [TEXTPROPS] *2CRTMLFRT End // Chart this.Chart = (Chart)BiffRecord.ReadRecord(reader); // Begin this.Begin = (Begin)BiffRecord.ReadRecord(reader); // *2FONTLIST this.FontListSequences = new List <FontListSequence>(); while (BiffRecord.GetNextRecordType(reader) == RecordType.FrtFontList) { this.FontListSequences.Add(new FontListSequence(reader)); } // Scl this.Scl = (Scl)BiffRecord.ReadRecord(reader); // PlotGrowth this.PlotGrowth = (PlotGrowth)BiffRecord.ReadRecord(reader); // [FRAME] if (BiffRecord.GetNextRecordType(reader) == RecordType.Frame) { this.FrameSequence = new FrameSequence(reader); } // *SERIESFORMAT this.SeriesFormatSequences = new List <SeriesFormatSequence>(); while (BiffRecord.GetNextRecordType(reader) == RecordType.Series) { SeriesFormatSequence seriesFormatSequence = new SeriesFormatSequence(reader); // remember the index in the collection seriesFormatSequence.order = (UInt16)this.SeriesFormatSequences.Count; this.SeriesFormatSequences.Add(seriesFormatSequence); } // *SS this.SsSequences = new List <SsSequence>(); while (BiffRecord.GetNextRecordType(reader) == RecordType.DataFormat) { this.SsSequences.Add(new SsSequence(reader)); } // ShtProps this.ShtProps = (ShtProps)BiffRecord.ReadRecord(reader); // *2DFTTEXT this.DftTextSequences = new List <DftTextSequence>(); while (BiffRecord.GetNextRecordType(reader) == RecordType.DataLabExt || BiffRecord.GetNextRecordType(reader) == RecordType.DefaultText) { this.DftTextSequences.Add(new DftTextSequence(reader)); } // AxesUsed this.AxesUsed = (AxesUsed)BiffRecord.ReadRecord(reader); // 1*2AXISPARENT this.AxisParentSequences = new List <AxisParentSequence>(); while (BiffRecord.GetNextRecordType(reader) == RecordType.AxisParent) { this.AxisParentSequences.Add(new AxisParentSequence(reader)); } // [CrtLayout12A] if (BiffRecord.GetNextRecordType(reader) == RecordType.CrtLayout12A) { this.CrtLayout12A = (CrtLayout12)BiffRecord.ReadRecord(reader); } // [DAT] if (BiffRecord.GetNextRecordType(reader) == RecordType.Dat) { this.Dat = (Dat)BiffRecord.ReadRecord(reader); } // *ATTACHEDLABEL this.AttachedLabelSequences = new List <AttachedLabelSequence>(); while (BiffRecord.GetNextRecordType(reader) == RecordType.Text) { this.AttachedLabelSequences.Add(new AttachedLabelSequence(reader)); } // [CrtLayout12A] // NOTE: The occurence of a CrtLayout12A record at this position in the sequence // is a deviation from the spec. However it has been encountered in certain // test documents (even if these documents were re-saved using Excel 2003) // if (BiffRecord.GetNextRecordType(reader) == RecordType.CrtLayout12A) { this.CrtLayout12A = (CrtLayout12)BiffRecord.ReadRecord(reader); } // [CRTMLFRT] if (BiffRecord.GetNextRecordType(reader) == RecordType.CrtMlFrt) { this.CrtMlfrtSequence = new CrtMlfrtSequence(reader); } // [CrtLayout12A] // NOTE: The occurence of a CrtLayout12A record at this position in the sequence // is a deviation from the spec. However it has been encountered in certain // test documents (even if these documents were re-saved using Excel 2003) // if (BiffRecord.GetNextRecordType(reader) == RecordType.CrtLayout12A) { this.CrtLayout12A = (CrtLayout12)BiffRecord.ReadRecord(reader); } // *([DataLabExt StartObject] ATTACHEDLABEL [EndObject]) this.DataLabelGroups = new List <DataLabelGroup>(); while (BiffRecord.GetNextRecordType(reader) == RecordType.DataLabExt || BiffRecord.GetNextRecordType(reader) == RecordType.Text) { this.DataLabelGroups.Add(new DataLabelGroup(reader)); } // [CrtLayout12A] // NOTE: The occurence of a CrtLayout12A record at this position in the sequence // is a deviation from the spec. However it has been encountered in certain // test documents (even if these documents were re-saved using Excel 2003) // if (BiffRecord.GetNextRecordType(reader) == RecordType.CrtLayout12A) { this.CrtLayout12A = (CrtLayout12)BiffRecord.ReadRecord(reader); } // [TEXTPROPS] if (BiffRecord.GetNextRecordType(reader) == RecordType.RichTextStream || BiffRecord.GetNextRecordType(reader) == RecordType.TextPropsStream) { this.TextPropsSequence = new TextPropsSequence(reader); } // [CrtLayout12A] // NOTE: The occurence of a CrtLayout12A record at this position in the sequence // is a deviation from the spec. However it has been encountered in certain // test documents (even if these documents were re-saved using Excel 2003) // if (BiffRecord.GetNextRecordType(reader) == RecordType.CrtLayout12A) { this.CrtLayout12A = (CrtLayout12)BiffRecord.ReadRecord(reader); } // *2CRTMLFRT this.CrtMlfrtSequences = new List <CrtMlfrtSequence>(); while (BiffRecord.GetNextRecordType(reader) == RecordType.CrtMlFrt) { this.CrtMlfrtSequences.Add(new CrtMlfrtSequence(reader)); } // End this.End = (End)BiffRecord.ReadRecord(reader); }
public AttachedLabelSequence(IStreamReader reader) : base(reader) { //ATTACHEDLABEL = Text Begin Pos [FontX] [AlRuns] AI [FRAME] [ObjectLink] [DataLabExtContents] [CrtLayout12] [TEXTPROPS] [CRTMLFRT] End //Text this.Text = (Text)BiffRecord.ReadRecord(reader); //Begin this.Begin = (Begin)BiffRecord.ReadRecord(reader); //Pos this.Pos = (Pos)BiffRecord.ReadRecord(reader); //[FontX] if (BiffRecord.GetNextRecordType(reader) == RecordType.FontX) { this.FontX = (FontX)BiffRecord.ReadRecord(reader); } //[AlRuns] if (BiffRecord.GetNextRecordType(reader) == RecordType.AlRuns) { this.AlRuns = (AlRuns)BiffRecord.ReadRecord(reader); } //AI this.AiSequence = new AiSequence(reader); //[FRAME] if (BiffRecord.GetNextRecordType(reader) == RecordType.Frame) { this.FrameSequence = new FrameSequence(reader); } //[ObjectLink] if (BiffRecord.GetNextRecordType(reader) == RecordType.ObjectLink) { this.ObjectLink = (ObjectLink)BiffRecord.ReadRecord(reader); } //[DataLabExtContents] if (BiffRecord.GetNextRecordType(reader) == RecordType.DataLabExtContents) { this.DataLabExtContents = (DataLabExtContents)BiffRecord.ReadRecord(reader); } //[CrtLayout12] if (BiffRecord.GetNextRecordType(reader) == RecordType.CrtLayout12) { this.CrtLayout12 = (CrtLayout12)BiffRecord.ReadRecord(reader); } //[TEXTPROPS] if (BiffRecord.GetNextRecordType(reader) == RecordType.RichTextStream || BiffRecord.GetNextRecordType(reader) == RecordType.TextPropsStream) { this.TextPropsSequence = new TextPropsSequence(reader); } //[CRTMLFRT] if (BiffRecord.GetNextRecordType(reader) == RecordType.CrtMlFrt) { this.CrtMlfrtSequence = new CrtMlfrtSequence(reader); } //End this.End = (End)BiffRecord.ReadRecord(reader); }