コード例 #1
0
ファイル: PrintHelper.cs プロジェクト: 25cm/HelloWorld
        public BaseSection GetHeaderSection()
        {
            if (headerSection == null)
            {
                headerSection = new BaseSection();
                headerSection.excel = excel;
            }

            return headerSection;
        }
コード例 #2
0
ファイル: PrintHelper.cs プロジェクト: 25cm/HelloWorld
        public BaseSection GetFooterSection()
        {
            if (footerSection == null)
            {
                footerSection = new BaseSection();
                footerSection.excel = excel;
            }

            return footerSection;
        }
コード例 #3
0
ファイル: PrintHelper.cs プロジェクト: 25cm/HelloWorld
        public BaseSection GetDetailSection()
        {
            if (detailSection == null)
            {
                detailSection = new BaseSection();
                detailSection.excel = excel;
            }

            return detailSection;
        }
コード例 #4
0
ファイル: PrintHelper.cs プロジェクト: 25cm/HelloWorld
 public void SetHeaderSection(BaseSection section)
 {
     headerSection = section;
 }
コード例 #5
0
ファイル: PrintHelper.cs プロジェクト: 25cm/HelloWorld
 public void SetFooterSection(BaseSection section)
 {
     footerSection = section;
 }
コード例 #6
0
ファイル: PrintHelper.cs プロジェクト: 25cm/HelloWorld
 public void SetDetailSection(BaseSection section)
 {
     detailSection = section;
 }