public BaseSection GetHeaderSection() { if (headerSection == null) { headerSection = new BaseSection(); headerSection.excel = excel; } return headerSection; }
public BaseSection GetFooterSection() { if (footerSection == null) { footerSection = new BaseSection(); footerSection.excel = excel; } return footerSection; }
public BaseSection GetDetailSection() { if (detailSection == null) { detailSection = new BaseSection(); detailSection.excel = excel; } return detailSection; }
public void SetHeaderSection(BaseSection section) { headerSection = section; }
public void SetFooterSection(BaseSection section) { footerSection = section; }
public void SetDetailSection(BaseSection section) { detailSection = section; }