<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
PDF中的文字域可以通過設定不同格式,用於顯示數位、貨幣、日期、時間、郵政編碼、電話號碼和社保號等等。Adobe Acrobat提供了許多固定的JavaScripts用來設定和驗證文字域的格式,如:AFNumber_Format(2, 0, 0, 0, "$", true)和AFNumber_Keystroke(2, 0, 0, 0, "$", true)。Format字尾的script是用來設定文字域顯示的格式,而Keystroke字尾的script是用來驗證輸入內容。
Spire.PDF for .NET提供了相應的方法來設定和驗證文字域格式。下面的表格羅列了常用的格式和Spire.PDF中對應的方法,可參考使用:
1.通過NuGet安裝dll(2種方法)
1.1 可以在Visual Studio中開啟“解決方案資源管理器”,滑鼠右鍵點選“參照”,“管理NuGet包”,然後搜尋“Spire.PDF”,點選“安裝”。
1.2 將以下內容複製到PM控制檯安裝。
Install-Package Spire.PDF -Version 7.12.1
2.手動新增dll參照
可通過手動下載包,然後解壓,找到BIN資料夾下的Spire.Pdf.dll。在Visual Studio中開啟“解決方案資源管理器”,滑鼠右鍵點選“參照”,“新增參照”將本地路徑BIN資料夾下的dll檔案新增參照至程式。
C#
using Spire.Pdf; using Spire.Pdf.Actions; using Spire.Pdf.Fields; using System.Drawing; namespace SetTextFormatInTextboxField { class Program { static void Main(string[] args) { //新建PDF檔案,並新增空白頁 PdfDocument pdf = new PdfDocument(); PdfPageBase page = pdf.Pages.Add(); //定義座標變數 float X = 10; float Y = 10; float width = 100; float height = 20; //範例化一個文字域物件,並設定它的位置和邊框樣式 PdfTextBoxField textbox = new PdfTextBoxField(page, "Number-TextBox"); textbox.Bounds = new RectangleF(X, Y, width, height); textbox.BorderWidth = 0.75f; textbox.BorderStyle = PdfBorderStyle.Solid; //給文字域的鍵盤擊鍵事件設定一個JavaScript動作用於驗證輸入內容是否符合要求 string js = PdfJavaScript.GetNumberKeystrokeString(2, 0, 0, 0, "$", true); PdfJavaScriptAction jsAction = new PdfJavaScriptAction(js); textbox.Actions.KeyPressed = jsAction; //設定文字域內容顯示為數位貨幣 js = PdfJavaScript.GetNumberFormatString(2, 0, 0, 0, "$", true); jsAction = new PdfJavaScriptAction(js); textbox.Actions.Format = jsAction; //新增文字域到PDF中,並儲存檔案 pdf.Form.Fields.Add(textbox); //新增文字方塊,設定文字內容顯示為日期格式 PdfTextBoxField textbox1 = new PdfTextBoxField(page, "DateFormat-TextBox"); textbox1.Bounds = new RectangleF(X+200, Y, width, height); textbox1.BorderWidth = 0.75f; textbox1.BorderStyle = PdfBorderStyle.Solid; string js1 = PdfJavaScript.GetDateKeystrokeString("mm/dd/yyyy"); PdfJavaScriptAction jsAction1 = new PdfJavaScriptAction(js1); textbox1.Actions.KeyPressed = jsAction1; js1 = PdfJavaScript.GetDateFormatString("mm/dd/yyyy"); jsAction1 = new PdfJavaScriptAction(js1); textbox1.Actions.Format = jsAction1; pdf.Form.Fields.Add(textbox1); //新增文字方塊,設定文字內容顯示為郵政編碼格式 PdfTextBoxField textbox2 = new PdfTextBoxField(page, "SpecialFormat0-1-TextBox"); textbox2.Bounds = new RectangleF(X + 400, Y, width, height); textbox2.BorderWidth = 0.75f; textbox2.BorderStyle = PdfBorderStyle.Solid; //string js2 = PdfJavaScript.GetSpecialKeystrokeString(0); string js2 = PdfJavaScript.GetSpecialKeystrokeString(1); PdfJavaScriptAction jsAction2 = new PdfJavaScriptAction(js2); textbox2.Actions.KeyPressed = jsAction2; //js2 = PdfJavaScript.GetSpecialFormatString(0); js2 = PdfJavaScript.GetSpecialFormatString(1); jsAction2 = new PdfJavaScriptAction(js2); textbox2.Actions.Format = jsAction2; pdf.Form.Fields.Add(textbox2); //新增文字方塊,設定文字內容顯示為百分數 PdfTextBoxField textbox3 = new PdfTextBoxField(page, "SpecialFormat2-TextBox"); textbox3.Bounds = new RectangleF(X, Y+50, width, height); textbox3.BorderWidth = 0.75f; textbox3.BorderStyle = PdfBorderStyle.Solid; string js3 = PdfJavaScript.GetPercentKeystrokeString(1,0); PdfJavaScriptAction jsAction3 = new PdfJavaScriptAction(js3); textbox3.Actions.KeyPressed = jsAction3; js3 = PdfJavaScript.GetPercentFormatString(1, 0); jsAction3 = new PdfJavaScriptAction(js3); textbox3.Actions.Format = jsAction3; pdf.Form.Fields.Add(textbox3); //新增文字方塊,設定資料驗證 PdfTextBoxField textbox4 = new PdfTextBoxField(page, "RangeValidate-TextBox"); textbox4.Bounds = new RectangleF(X+200, Y + 50, width, height); textbox4.BorderWidth = 0.75f; textbox4.BorderStyle = PdfBorderStyle.Solid; string js4 = PdfJavaScript.GetRangeValidateString(true, -18, true, 18); PdfJavaScriptAction jsAction4 = new PdfJavaScriptAction(js4); textbox4.Actions.Format = jsAction4; pdf.Form.Fields.Add(textbox4); //儲存檔案 pdf.SaveToFile("FormatField.pdf", FileFormat.PDF); } } }
VB.NET
Imports Spire.Pdf Imports Spire.Pdf.Actions Imports Spire.Pdf.Fields Imports System.Drawing Namespace SetTextFormatInTextboxField Class Program Private Shared Sub Main(args As String()) '新建PDF檔案,並新增空白頁 Dim pdf As New PdfDocument() Dim page As PdfPageBase = pdf.Pages.Add() '定義座標變數 Dim X As Single = 10 Dim Y As Single = 10 Dim width As Single = 100 Dim height As Single = 20 '範例化一個文字域物件,並設定它的位置和邊框樣式 Dim textbox As New PdfTextBoxField(page, "Number-TextBox") textbox.Bounds = New RectangleF(X, Y, width, height) textbox.BorderWidth = 0.75F textbox.BorderStyle = PdfBorderStyle.Solid '給文字域的鍵盤擊鍵事件設定一個JavaScript動作用於驗證輸入內容是否符合要求 Dim js As String = PdfJavaScript.GetNumberKeystrokeString(2, 0, 0, 0, "$", True) Dim jsAction As New PdfJavaScriptAction(js) textbox.Actions.KeyPressed = jsAction '設定文字域內容顯示為數位貨幣 js = PdfJavaScript.GetNumberFormatString(2, 0, 0, 0, "$", True) jsAction = New PdfJavaScriptAction(js) textbox.Actions.Format = jsAction '新增文字域到PDF中,並儲存檔案 pdf.Form.Fields.Add(textbox) '新增文字方塊,設定文字內容顯示為日期格式 Dim textbox1 As New PdfTextBoxField(page, "DateFormat-TextBox") textbox1.Bounds = New RectangleF(X + 200, Y, width, height) textbox1.BorderWidth = 0.75F textbox1.BorderStyle = PdfBorderStyle.Solid Dim js1 As String = PdfJavaScript.GetDateKeystrokeString("mm/dd/yyyy") Dim jsAction1 As New PdfJavaScriptAction(js1) textbox1.Actions.KeyPressed = jsAction1 js1 = PdfJavaScript.GetDateFormatString("mm/dd/yyyy") jsAction1 = New PdfJavaScriptAction(js1) textbox1.Actions.Format = jsAction1 pdf.Form.Fields.Add(textbox1) '新增文字方塊,設定文字內容顯示為郵政編碼格式 Dim textbox2 As New PdfTextBoxField(page, "SpecialFormat0-1-TextBox") textbox2.Bounds = New RectangleF(X + 400, Y, width, height) textbox2.BorderWidth = 0.75F textbox2.BorderStyle = PdfBorderStyle.Solid 'string js2 = PdfJavaScript.GetSpecialKeystrokeString(0); Dim js2 As String = PdfJavaScript.GetSpecialKeystrokeString(1) Dim jsAction2 As New PdfJavaScriptAction(js2) textbox2.Actions.KeyPressed = jsAction2 'js2 = PdfJavaScript.GetSpecialFormatString(0); js2 = PdfJavaScript.GetSpecialFormatString(1) jsAction2 = New PdfJavaScriptAction(js2) textbox2.Actions.Format = jsAction2 pdf.Form.Fields.Add(textbox2) '新增文字方塊,設定文字內容顯示為百分數 Dim textbox3 As New PdfTextBoxField(page, "SpecialFormat2-TextBox") textbox3.Bounds = New RectangleF(X, Y + 50, width, height) textbox3.BorderWidth = 0.75F textbox3.BorderStyle = PdfBorderStyle.Solid Dim js3 As String = PdfJavaScript.GetPercentKeystrokeString(1, 0) Dim jsAction3 As New PdfJavaScriptAction(js3) textbox3.Actions.KeyPressed = jsAction3 js3 = PdfJavaScript.GetPercentFormatString(1, 0) jsAction3 = New PdfJavaScriptAction(js3) textbox3.Actions.Format = jsAction3 pdf.Form.Fields.Add(textbox3) '新增文字方塊,設定資料驗證 Dim textbox4 As New PdfTextBoxField(page, "RangeValidate-TextBox") textbox4.Bounds = New RectangleF(X + 200, Y + 50, width, height) textbox4.BorderWidth = 0.75F textbox4.BorderStyle = PdfBorderStyle.Solid Dim js4 As String = PdfJavaScript.GetRangeValidateString(True, -18, True, 18) Dim jsAction4 As New PdfJavaScriptAction(js4) textbox4.Actions.Format = jsAction4 pdf.Form.Fields.Add(textbox4) '儲存檔案 pdf.SaveToFile("FormatField.pdf", FileFormat.PDF) End Sub End Class End Namespace
設定後的文字方塊域填寫效果如圖:
以上就是C#設定或驗證PDF文字域格式的方法詳解的詳細內容,更多關於C#設定 驗證PDF文字域格式的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45