一般在創(chuàng)建或者打開一個(gè)Word文檔時(shí),如果沒(méi)有進(jìn)行過(guò)特殊設(shè)置的話,系統(tǒng)默認(rèn)的輸入語(yǔ)言的是英語(yǔ)輸入,但是為適應(yīng)不同的辦公環(huán)境,我們其實(shí)是需要對(duì)文字嵌入的語(yǔ)言進(jìn)行切換的,因此,本文將介紹如何使用免費(fèi)版組件Free Spire.Doc for .NET來(lái)實(shí)現(xiàn)Word語(yǔ)言輸入。另外,針對(duì)這款組件的多種Word操作功能,如,設(shè)置文檔屬性、文檔視圖模式等,本文中也將作進(jìn)一步演示演示。
成都創(chuàng)新互聯(lián)公司網(wǎng)站建設(shè)服務(wù)商,為中小企業(yè)提供成都網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)服務(wù),網(wǎng)站設(shè)計(jì),成都網(wǎng)站托管等一站式綜合服務(wù)型公司,專業(yè)打造企業(yè)形象網(wǎng)站,讓您在眾多競(jìng)爭(zhēng)對(duì)手中脫穎而出成都創(chuàng)新互聯(lián)公司。
代碼操作前準(zhǔn)備
安裝Spire.Doc for .NET之后,添加引用Spire.Doc.dll文件到項(xiàng)目程序集,同時(shí)添加相應(yīng)的using指令到命名空間。
注意:以下代碼中,以選取西班牙語(yǔ)(秘魯)為例,其他語(yǔ)言設(shè)置,可參見(jiàn) Microsoft Locale ID Values
具體步驟如下:
步驟一:添加如下命名空間
using System; using Spire.Doc; using Spire.Doc.Documents; using Spire.Doc.Fields;
步驟二:更改文本輸入語(yǔ)言
//創(chuàng)建一個(gè)Document類實(shí)例,并添加Section和Paragraph到Document Document doc = new Document(); Section sec = doc.AddSection(); Paragraph para = sec.AddParagraph(); //向段落添加西班牙(秘魯)語(yǔ)文字并設(shè)置文本對(duì)齊方式 TextRange txtRange = para.AppendText("Puedo escribir los versos más tristes esta noche.\n Escribir, por ejemplo: La noche está estrellada,y tiritan, azules, los astros, a lo lejos.\n El viento de la noche gira en el cielo y canta.\n Puedo escribir los versos más tristes esta noche."); txtRange.CharacterFormat.LocaleIdASCII= 10250; para.Format.HorizontalAlignment = HorizontalAlignment.Center;
步驟三:設(shè)置試圖模式為Web視圖,調(diào)整視圖縮放比例
doc.ViewSetup.DocumentViewType = DocumentViewType.WebLayout; doc.ViewSetup.ZoomPercent = 120; doc.ViewSetup.ZoomType = ZoomType.None;
步驟四:添加文檔屬性(可根據(jù)需要自行設(shè)置文檔內(nèi)置屬性或者自定義屬性)
//添加文檔屬性(內(nèi)置屬性) doc.BuiltinDocumentProperties.Title = "測(cè)試文件"; doc.BuiltinDocumentProperties.Category = "非機(jī)密文檔"; doc.BuiltinDocumentProperties.Author = "James"; doc.BuiltinDocumentProperties.LastAuthor = "Mia"; doc.BuiltinDocumentProperties.Keywords = "Word文檔, 屬性, 樣本"; doc.BuiltinDocumentProperties.Comments = "此文檔僅供測(cè)試使用"; doc.BuiltinDocumentProperties.Subject = "Demo"; //添加文檔屬性(自定義屬性) CustomDocumentProperties custom = doc.CustomDocumentProperties; custom.Add("Authorized Date", DateTime.Today);
步驟五:保存并打開文檔
doc.SaveToFile("Sample.doc", FileFormat.Doc); System.Diagnostics.Process.Start("Sample.doc");
完成以上步驟后,運(yùn)行該項(xiàng)目生成文件(可在該項(xiàng)目文件夾下bin>Debug下查看),如下圖所示:
對(duì)文檔屬性的設(shè)置如下圖所示:
以上全部?jī)?nèi)容為本次對(duì)Word文檔進(jìn)行語(yǔ)言設(shè)置方法的講述,文中對(duì)文檔的屬性設(shè)置在文檔的保存與日后文檔管理上其實(shí)也很有幫助。希望本文能提供一定幫助,感謝瀏覽!
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。