在保持自定义货币格式的同时,使用iTextSharp将C# DataGridView导出为PDF,可以按照以下步骤进行操作:
using System;
using System.IO;
using System.Windows.Forms;
using iTextSharp.text;
using iTextSharp.text.pdf;
namespace DataGridViewToPDF
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnExport_Click(object sender, EventArgs e)
{
// 创建PDF文档
Document document = new Document();
PdfWriter writer = PdfWriter.GetInstance(document, new FileStream("output.pdf", FileMode.Create));
document.Open();
// 创建PDF表格
PdfPTable table = new PdfPTable(dataGridView1.Columns.Count);
table.DefaultCell.Padding = 3;
table.WidthPercentage = 100;
table.HorizontalAlignment = Element.ALIGN_LEFT;
// 添加表头
foreach (DataGridViewColumn column in dataGridView1.Columns)
{
PdfPCell cell = new PdfPCell(new Phrase(column.HeaderText));
table.AddCell(cell);
}
// 添加数据行
foreach (DataGridViewRow row in dataGridView1.Rows)
{
foreach (DataGridViewCell cell in row.Cells)
{
if (cell.Value != null)
{
// 格式化货币数据
if (cell.ValueType == typeof(decimal))
{
cell.Value = ((decimal)cell.Value).ToString("C");
}
table.AddCell(cell.Value.ToString());
}
}
}
// 将表格添加到PDF文档
document.Add(table);
document.Close();
MessageBox.Show("导出成功!");
}
}
}
这样,你就可以在保持自定义货币格式的前提下,使用iTextSharp将C# DataGridView导出为PDF了。
请注意,以上代码示例中并未提及腾讯云相关产品,因为腾讯云并没有直接与iTextSharp或DataGridView相关的产品。如需了解腾讯云的其他产品和服务,可以访问腾讯云官方网站:https://cloud.tencent.com/
领取专属 10元无门槛券
手把手带您无忧上云