コード例 #1
0
        public PROJECTNAME(PROJECTINFORMATION parent, XlBinaryReader Data)
        {
            this.parent = parent;

            this.Id          = Data.ReadUInt16();
            this.Size        = Data.ReadUInt32();
            this.ProjectName = Data.ReadBytes((int)this.Size);

            Validate();
        }
コード例 #2
0
        public PROJECTHELPFILEPATH(PROJECTINFORMATION parent, XlBinaryReader Data)
        {
            this.parent = parent;

            this.Id = Data.ReadUInt16();
            this.SizeOfHelpFile1 = Data.ReadUInt32();
            this.HelpFile1       = Data.ReadBytes(this.SizeOfHelpFile1);
            this.Reserved        = Data.ReadUInt16();
            this.SizeOfHelpFile2 = Data.ReadUInt32();
            this.HelpFile2       = Data.ReadBytes(this.SizeOfHelpFile2);

            Validate();
        }
コード例 #3
0
        public PROJECTDOCSTRING(PROJECTINFORMATION parent, XlBinaryReader Data)
        {
            this.parent = parent;

            this.Id = Data.ReadUInt16();
            this.SizeOfDocString        = Data.ReadUInt32();
            this.DocString              = Data.ReadBytes(Convert.ToInt32(this.SizeOfDocString));
            this.Reserved               = Data.ReadUInt16();
            this.SizeOfDocStringUnicode = Data.ReadUInt32();
            this.DocStringUnicode       = Data.ReadBytes(Convert.ToInt32(this.SizeOfDocStringUnicode));

            Validate();
        }
コード例 #4
0
ファイル: PROJECTCONSTANTS.cs プロジェクト: pepe57/vba
        public PROJECTCONSTANTS(PROJECTINFORMATION parent, XlBinaryReader Data)
        {
            this.parent = parent;

            this.Id = Data.ReadUInt16();
            this.SizeOfConstants        = Data.ReadUInt32();
            this.Constants              = Data.ReadBytes(this.SizeOfConstants);
            this.Reserved               = Data.ReadUInt16();
            this.SizeOfConstantsUnicode = Data.ReadUInt32();
            this.ConstantsUnicode       = Data.ReadBytes(this.SizeOfConstantsUnicode);

            Validate();
        }
コード例 #5
0
 public string GetHelpFile1AsString(PROJECTINFORMATION ProjectInformation)
 {
     return(GetHelpFile1AsString(ProjectInformation.CodePageRecord));
 }
コード例 #6
0
ファイル: PROJECTCONSTANTS.cs プロジェクト: pepe57/vba
 public string GetConstantsAsString(PROJECTINFORMATION ProjectInformation)
 {
     return(GetConstantsAsString(ProjectInformation.CodePageRecord));
 }