彩票走势图

Aspose.PDF如何在PDF文件中显示货币符号

原创|其它|编辑:郝浩|2012-09-14 11:03:52.000|阅读 641 次

概述:在我们日常的数据表中,经常会涉及到金额,PDF文件的数据表也不例外,今天我们就来讲讲如何运用Aspose.PDF显示货币符号(如:$¥£€)。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

在我们日常的数据表中,经常会涉及到金额,PDF文件的数据表也不例外,今天我们就来讲讲如何运用Aspose.PDF显示货币符号(如:$¥£€)。

Aspose.Pdf有一个名为TableFormatInfo的类,其中包含了一个名为CurrencySymbol的属性,使用这个属性就可以帮助我们轻松实现数据货币格式的设置啦。

参考代码如下:

C#

 // Create an object of TableFormatInfo class.
 Aspose.Pdf.Generator.TableFormatInfo tfi = new Aspose.Pdf.Generator.TableFormatInfo();

//Sets a string value that indicate currency symbol of money, the default is "$".
tfi.CurrencySymbol = "$";

// Format the table in specified columns and rows with given TableFormatInfo
table.FormatTableWithFormatInfo(tfi,int firstColumn,int firstRow,int maxRows,int maxColumns);
 

VB.NET

 ' Create an object of TableFormatInfo class.
Dim tfi As Aspose.Pdf.Generator.TableFormatInfo = New Aspose.Pdf.Generator.TableFormatInfo()

'Sets a string value that indicate currency symbol of money, the default is "$".
tfi.CurrencySymbol = "$"

'Format the table in specified columns and rows with given TableFormatInfo  
 table.FormatTableWithFormatInfo(tfi,int firstColumn,int firstRow,int maxRows,int maxColumns

代码运行后的效果图如下:

Aspose.PDF如何在PDF文件中显示货币符号
 


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@cahobeh.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP