如何通过plsql编码扩展Excel单元格列宽
在 Oracle plsql 中,我将数据库表值转换为 Excel 格式。
我使用自定义颜色、标题等成功转换,但我不知道如何通过编码扩展单元格列宽?
In Oracle plsql, I convert my database table values to Excel format.
I converted successfully with customised color, header etc. but I cannot find out how to expand cell column width through coding?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您要输出基于 XML 的电子表格,您可以使用如下方式实现列宽:
这需要在 Table 节点之后、Row 节点之前输出。
Assuming you are outputting an XML based spreadsheet, you can achieve column widths using something like this:
This would need to be output after the Table node but before the Row node.
如果您正在使用(或想要使用)ORA_EXCEL,则可以使用过程 set_column_width 调整列宽。
在下面的示例中,您可以看到使用 ORA_XCEL 创建 Excel 文档和调整列大小是多么容易:
您可以找到更多详细信息 这里
干杯
it you are using (or want to use) ORA_EXCEL, column width can be adjusted using procedure set_column_width.
In following example you can see how easy is to create Excel document and adjust columnsize with ORA_XCEL:
More details you can find here
Cheers