提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|使用教程|编辑:李显亮|2020-07-10 09:35:19.113|阅读 589 次
概述:Aspose.Cells提供了控制工作表的行,列和滚动条的可见性的方法。在本文中将介绍如何显示和隐藏行列和滚动条。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
Aspose.Cells for .NET是Excel电子表格编程API,可加快电子表格管理和处理任务,支持构建具有生成,修改,转换,呈现和打印电子表格功能的跨平台应用程序。
在接下来的系列教程中,将为开发者带来Aspose.Cells for .NET的一系列使用教程,例如关于加载保存转换、字体、渲染、绘图、智能标记等等。本文重点介绍如何显示和隐藏行列和滚动条。
>>Aspose.Cells for .NET已经更新至v20.6,加载图片/形状的性能提升,支持在GridWeb中存储会话信息的临时文件,发现5处异常情况,点击下载体验
Aspose.Cells提供了一个Workbook类,该类代表Microsoft Excel文件。该工作簿 类包含一个 Workbook 集合,它允许开发人员访问每个工作表中的Excel文件。工作表由Worksheet 类表示。该 Workbook 类提供了一个Cells集合,表示工作表中的所有单元格。“ 单元格” 集合提供了几种用于管理工作表中的行或列的方法。
开发人员可以通过分别调用Cells 集合的UnhideRow 和UnhideColumn 方法来显示任何隐藏的行或列。两种方法都有两个参数:
// The path to the documents directory. string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); // Creating a file stream containing the Excel file to be opened FileStream fstream = new FileStream(dataDir + "book1.xls", FileMode.Open); // Instantiating a Workbook object // Opening the Excel file through the file stream Workbook workbook = new Workbook(fstream); // Accessing the first worksheet in the Excel file Worksheet worksheet = workbook.Worksheets[0]; // Unhiding the 3rd row and setting its height to 13.5 worksheet.Cells.UnhideRow(2, 13.5); // Unhiding the 2nd column and setting its width to 8.5 worksheet.Cells.UnhideColumn(1, 8.5); // Saving the modified Excel file workbook.Save(dataDir + "output.xls"); // Closing the file stream to free all resources fstream.Close();
开发人员可以通过分别调用Cells 集合的HideRow 和HideColumn 方法来隐藏行或列。两种方法都将行和列索引作为参数来隐藏特定的行或列。
// The path to the documents directory. string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); // Creating a file stream containing the Excel file to be opened FileStream fstream = new FileStream(dataDir + "book1.xls", FileMode.Open); // Instantiating a Workbook object // Opening the Excel file through the file stream Workbook workbook = new Workbook(fstream); // Accessing the first worksheet in the Excel file Worksheet worksheet = workbook.Worksheets[0]; // Hiding the 3rd row of the worksheet worksheet.Cells.HideRow(2); // Hiding the 2nd column of the worksheet worksheet.Cells.HideColumn(1); // Saving the modified Excel file workbook.Save(dataDir + "output.out.xls"); // Closing the file stream to free all resources fstream.Close();
通过分别调用Cells 集合的HideRows 和HideColumns 方法,开发人员可以一次隐藏多行或多列。两种方法都以起始行或列索引以及应隐藏的行或列数作为参数。
// The path to the documents directory. string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); // Creating a file stream containing the Excel file to be opened FileStream fstream = new FileStream(dataDir + "book1.xls", FileMode.Open); // Instantiating a Workbook object // Opening the Excel file through the file stream Workbook workbook = new Workbook(fstream); // Accessing the first worksheet in the Excel file Worksheet worksheet = workbook.Worksheets[0]; // Hiding 3,4 and 5 rows in the worksheet worksheet.Cells.HideRows(2, 3); // Hiding 2 and 3 columns in the worksheet worksheet.Cells.HideColumns(1, 2); // Saving the modified Excel file workbook.Save(dataDir + "outputxls"); // Closing the file stream to free all resources fstream.Close();
滚动条用于浏览任何文件的内容。通常,有两种滚动条:垂直和水平滚动条。Microsoft Excel还提供了水平和垂直滚动条,以便用户可以滚动浏览工作表内容。使用Aspose.Cells,开发人员可以控制Excel文件中两种类型的滚动条的可见性。
Aspose.Cells提供了一个代表Excel文件的Workbook类。的工作簿 类提供了一个宽范围的性质和用于管理Excel文件方法。若要控制滚动条的可见性,请使用Workbook 类的WorkbookSettings.IsVScrollBarVisible和WorkbookSettings.IsHScrollBarVisible 属性。WorkbookSettings.IsVScrollBarVisible 和WorkbookSettings.IsHScrollBarVisible 是布尔属性,这意味着这些属性只能存储true或false值。
Aspose.Cells提供了一个代表Excel文件的Workbook类。的工作簿 类提供了一个宽范围的性质和用于管理Excel文件方法。若要控制滚动条的可见性,请使用Workbook 类的WorkbookSettings.IsVScrollBarVisible和WorkbookSettings.IsHScrollBarVisible 属性。WorkbookSettings.IsVScrollBarVisible 和WorkbookSettings.IsHScrollBarVisible 是布尔属性,这意味着这些属性只能存储true或false值。
通过将Workbook类的WorkbookSettings.IsVScrollBarVisible 或WorkbookSettings.IsHScrollBarVisible 属性设置为true,使滚动条可见。
通过将Workbook类的WorkbookSettings.IsVScrollBarVisible 或WorkbookSettings.IsHScrollBarVisible 属性设置为false来隐藏滚动条。
下面是一个完整的代码,该代码打开一个Excel文件book1.xls,隐藏两个滚动条,然后将修改后的文件另存为output.xls。
// The path to the documents directory. string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); // Creating a file stream containing the Excel file to be opened FileStream fstream = new FileStream(dataDir + "book1.xls", FileMode.Open); // Instantiating a Workbook object // Opening the Excel file through the file stream Workbook workbook = new Workbook(fstream); // Hiding the vertical scroll bar of the Excel file workbook.Settings.IsVScrollBarVisible = false; // Hiding the horizontal scroll bar of the Excel file workbook.Settings.IsHScrollBarVisible = false; // Saving the modified Excel file workbook.Save(dataDir + "output.xls"); // Closing the file stream to free all resources fstream.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幢