提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|使用教程|编辑:李显亮|2020-08-13 10:25:39.900|阅读 1435 次
概述:页眉和页脚分别是显示在顶部边缘下方或底部边缘上方的文本行。也可以在工作表中添加页眉和页脚。Aspose.Cells允许您在运行时向工作表添加页眉和页脚,但是建议在预先设计的文件中手动设置页眉和页脚以进行打印。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
Aspose.Cells for .NET是Excel电子表格编程API,可加快电子表格管理和处理任务,支持构建具有生成,修改,转换,呈现和打印电子表格功能的跨平台应用程序。
在接下来的系列教程中,将为开发者带来Aspose.Cells for .NET的一系列使用教程,例如关于加载保存转换、字体、渲染、绘图、智能标记等等。本文重点介绍如何设置页眉和页脚。
>>Aspose.Cells for .NET已经更新至v20.7,添加FilterString()条件支持,支持对所有PivotField进行循环,提升Worksheet.Cells.RemoveDuplicates工作性能,发现4处异常情况,点击下载体验
Aspose.Cells允许在运行时向工作表添加页眉和页脚,但是建议在预先设计的文件中手动设置页眉和页脚以进行打印。可以使用Microsoft Excel作为GUI工具来设置页眉和页脚,以节省工作量和开发时间。Aspose.Cells可以导入文件并保存设置。
为了在运行时添加页眉和页脚,Aspose.Cells提供了特殊的API调用和脚本命令来格式化页眉和页脚。
脚本命令 |
描述 |
&P | 当前页码 |
&G | 照片 |
&N | 总页数 |
&D | 当前日期 |
&T | 当前时间 |
&A |
|
&F | 没有路径的文件名 |
&“” | 代表字体名称。例如:&“ Arial” |
&“, ” | 用样式表示字体名称。例如:&“ Arial,Bold” |
& | 代表字体大小。例如:“&14abc”。但是,如果此命令后跟要在页眉中打印的纯数字,则应在字体大小中用空格字符分隔。例如:“&14 123”。 |
所述PAGESETUP 类提供两种方法,SetHeader可以 和SetFooter,用于将页眉和页脚添加到工作表。这些方法仅采用两个参数:
// Instantiating a Workbook object Workbook excel = new Workbook(); // Obtaining the reference of the PageSetup of the worksheet PageSetup pageSetup = excel.Worksheets[0].PageSetup; // Setting worksheet name at the left section of the header pageSetup.SetHeader(0, "&A"); // Setting current date and current time at the centeral section of the header // and changing the font of the header pageSetup.SetHeader(1, "&\"Times New Roman,Bold\"&D-&T"); // Setting current file name at the right section of the header and changing the // font of the header pageSetup.SetHeader(2, "&\"Times New Roman,Bold\"&12&F"); // Setting a string at the left section of the footer and changing the font // of a part of this string ("123") pageSetup.SetFooter(0, "Hello World! &\"Courier New\"&14 123"); // Setting the current page number at the central section of the footer pageSetup.SetFooter(1, "&P"); // Setting page count at the right section of footer pageSetup.SetFooter(2, "&N"); // Save the Workbook. excel.Save("SetHeadersAndFooters_out.xls");
该PAGESETUP 类有两个方法,SetHeaderPicture 和SetFooterPicture,用于将图片添加到页眉和页脚。这些方法采用以下参数:
执行以下代码并打开文件后,通过以下方法检查工作表的标题:
// The path to the documents directory. string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); // Creating a Workbook object Workbook workbook = new Workbook(); // Creating a string variable to store the url of the logo/picture string logo_url = dataDir + "aspose-logo.jpg"; // Declaring a FileStream object FileStream inFile; // Declaring a byte array byte[] binaryData; // Creating the instance of the FileStream object to open the logo/picture in the stream inFile = new System.IO.FileStream(logo_url, System.IO.FileMode.Open, System.IO.FileAccess.Read); // Instantiating the byte array of FileStream object's size binaryData = new Byte[inFile.Length]; // Reads a block of bytes from the stream and writes data in a given buffer of byte array. long bytesRead = inFile.Read(binaryData, 0, (int)inFile.Length); // Creating a PageSetup object to get the page settings of the first worksheet of the workbook PageSetup pageSetup = workbook.Worksheets[0].PageSetup; // Setting the logo/picture in the central section of the page header pageSetup.SetHeaderPicture(1, binaryData); // Setting the script for the logo/picture pageSetup.SetHeader(1, "&G"); // Setting the Sheet's name in the right section of the page header with the script pageSetup.SetHeader(2, "&A"); // Saving the workbook workbook.Save(dataDir + "InsertImageInHeaderFooter_out.xls"); //Closing the FileStream object inFile.Close();
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
本文探讨 SQL Server 中 NULL 和空值之间的区别,并讨论如何有效地处理它们。
Unity 是一款功能极其丰富的游戏引擎,允许开发人员将各种媒体集成到他们的项目中。但是,它缺少最令人兴奋的功能之一 - 将 Web 内容(例如 HTML、CSS 和 JavaScript)直接渲染到 3D 场景中的纹理上的能力。在本文中,我们将介绍如何使用 DotNetBrowser 在 Unity3D 中将 Web 内容渲染为纹理。
DevExpress v24.2帮助文档正式发布上线了,请按版本按需下载~
本教程将向您展示如何用MyEclipse构建一个Web项目,欢迎下载最新版IDE体验!
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢