gpt4 book ai didi

java - itextsharp : java to vb. 净

转载 作者:行者123 更新时间:2023-11-30 05:14:52 25 4
gpt4 key购买 nike

我正在尝试更改 pdftable 上的字体,并且我在 java 中有此提示,但需要一些帮助才能将其放入 vb.net

 PdfPTable table = new PdfPTable(3);
table.AddCell("Cell 1");
PdfPCell cell = new PdfPCell(new Phrase("Cell 2", new Font(Font.HELVETICA, 8f, Font.NORMAL, Color.YELLOW)));

最佳答案

Imports iTextSharp.text
Imports iTextSharp.text.pdf

Module Module1

Sub Main()

Dim table As New PdfPTable(3)
table.AddCell("Cell 1")
Dim f As New Font(Font.HELVETICA, 8.0F, Font.NORMAL, Color.YELLOW)
Dim ph As New Phrase("Cell 2", f)
Dim cell As New PdfPCell(ph)

End Sub

End Module

关于java - itextsharp : java to vb. 净,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1917125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com