當前位置: 首頁>>代碼示例>>C#>>正文


C# HSSFSheet.SetMargin方法代碼示例

本文整理匯總了C#中NPOI.HSSF.UserModel.HSSFSheet.SetMargin方法的典型用法代碼示例。如果您正苦於以下問題:C# HSSFSheet.SetMargin方法的具體用法?C# HSSFSheet.SetMargin怎麽用?C# HSSFSheet.SetMargin使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在NPOI.HSSF.UserModel.HSSFSheet的用法示例。


在下文中一共展示了HSSFSheet.SetMargin方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: definePrintSetup

        /// <summary>
        /// Définition des zones d'impression
        /// </summary>
        /// <param name="_sheet"></param>
        /// <param name="_msgCenter"></param>
        /// <param name="_scale"></param>
        private void definePrintSetup(HSSFSheet _sheet, string _msgCenter, short _scale)
        {
            HSSFFooter footer = (HSSFFooter)_sheet.Footer;
            //you can set right, left, and center footers
            footer.Center = _msgCenter;
            footer.Right = "Page " + HSSFFooter.Page + "         ";

            HSSFPrintSetup print = (HSSFPrintSetup)_sheet.PrintSetup;
            print.Landscape = true;
            //print scale is scale in % – here I’m doing 70%

            print.Scale = _scale;

            _sheet.SetMargin(NPOI.SS.UserModel.MarginType.TopMargin, (double).50);
            //the bottom margin needs to be larger to accommodate my footer text
            _sheet.SetMargin(NPOI.SS.UserModel.MarginType.BottomMargin, (double)1.00);
            _sheet.SetMargin(NPOI.SS.UserModel.MarginType.LeftMargin, (double).50);
            _sheet.SetMargin(NPOI.SS.UserModel.MarginType.RightMargin, (double).50);
        }
開發者ID:StephOfPixVert,項目名稱:PlanningLab,代碼行數:25,代碼來源:clsReport.cs


注:本文中的NPOI.HSSF.UserModel.HSSFSheet.SetMargin方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。