Spire.Office for .NET is a combination of Enterprise-Level Office .NET API offered by E-iceblue. It includes Spire.Doc, Spire.XLS, Spire.Spreadsheet, Spire.Presentation, Spire.PDF, Spire.DataExport, Spire.OfficeViewer, Spire.PDFViewer, Spire.DocViewer, Spire.Barcode and Spire.Email. Spire.Office contains the most up-to-date versions of the above .NET API.
With Spire.Office for .NET, developers can create a wide range of applications. It enables developers to open, create, modify, convert, print, View MS Word, Excel, PowerPoint and PDF documents. Furthermore, it allows users to export data to popular files such as MS Word/Excel/RTF/Access, PowerPoint, PDF, XPS, HTML, XML, Text, CSV, DBF, Clipboard, SYLK, PostScript, PCL, etc.
Spire.Office for .NET can be linked into any type of a 32-bit or 64-bit .NET application including ASP.NET, Web Services and WinForms for .NET Framework version 2.0 to 4.5. Spire.Office also supports to work on .NET Core, .NET 5.0, .NET 6.0, Microsoft Azure, Mono Android and Xamarin.iOS.
文章来源:https://www.toymoban.com/news/detail-422640.html
文章来源地址https://www.toymoban.com/news/detail-422640.html
Here is a list of changes made in this release | ||
Spire.Doc | ||
Category | ID | Description |
New feature | SPIREDOC-5044 | Supports setting line types(dashed/dotted) in shape objects. |
Document doc = new Document(); | ||
Section sec = doc.AddSection(); | ||
Paragraph para1 = sec.AddParagraph(); | ||
ShapeObject shape1 = para1.AppendShape(100, 100, ShapeType.Line); | ||
shape1.FillColor = Color.Purple; | ||
shape1.StrokeColor = Color.Black; | ||
shape1.LineStyle = ShapeLineStyle.Single; | ||
shape1.LineDashing = LineDashing.Dash; | ||
doc.SaveToFile("InsertShapes.docx", Spire.Doc.FileFormat.Docx2013); | ||
New feature | SPIREDOC-8280 | Supports Docx2016 and Docx2019 file formats. |
Spire.Doc.FileFormat.Docx2016 | ||
Spire.Doc.FileFormat.Docx2019 | ||
Bug | SPIREDOC-8289 | Fixes the issue that the content was misplaced when converting Word documents to PDF. |
Bug | SPIREDOC-8770 | Fixes the issue that the table content lost when converting Word documents to PDF. |
Bug | SPIREDOC-8930 | Fixes the issue that the table style was incorrect after copying content from Document A to Document B. |
Bug | SPIREDOC-8958 | Fixes the issue that the pagination was incorrect when converting Word to PDF. |
Bug | SPIREDOC-9081 | Fixes the issue that the header content was incorrect when converting Word to PDF. |
Bug | SPIREDOC-9111 | Fixes the issue that the application threw "System.IndexOutOfRangeException" when converting Word to PDF. |
Bug | SPIREDOC-9231 | Fixes the issue that the application threw "System.ArgumentException" when merging Word documents. |
Spire.PDF | ||
Category | ID | Description |
New feature | SPIREPDF-5747 | Supports automatic font size setting for textbox form fields. |
PdfDocument pdf = new PdfDocument(); | ||
pdf.LoadFromFile(input); | ||
PdfFormWidget formWidget = pdf.Form as PdfFormWidget; | ||
foreach(PdfField field in formWidget.FieldsWidget.List) | ||
{ | ||
if(field is PdfTextBoxFieldWidget) | ||
{ | ||
PdfTextBoxFieldWidget textBoxField = field as PdfTextBoxFieldWidget; | ||
if(textBoxField.Name == "Name of the Company") | ||
{ | ||
textBoxField.Font = new PdfTrueTypeFont(new Font("Arial", 16), true); | ||
textBoxField.FontSizeAuto = true; | ||
textBoxField.Text = "e-iceblue"; | ||
} | ||
} | ||
} | ||
pdf.SaveToFile(output); | ||
Bug | SPIREPDF-5785 | Fixes the issue that the content overlapped after replacing text. |
Bug | SPIREPDF-5801 | Fixes the issue that the text effect of setting adaptive font was incorrect. |
Bug | SPIREPDF-5804 | Fixes the issue that the converted OFD file was blank when opened with Jinrui OFD reader and Chaoyue ofd reader to view the content. |
Bug | SPIREPDF-5825 | Fixes the issue that the memory overflowed when converting PDF to images. |
Bug | SPIREPDF-5835 | Fixes the issue that the stamp was incorrect when converting OFD to PDF. |
Bug | SPIREPDF-5841 | Fixes the issue that the program threw AccessViolationException when converting PDF to images. |
Bug | SPIREPDF-5850 | Fixes the issue that the value of getting new metadata is null. |
Bug | SPIREPDF-5852 | Fixes the issue that the memory released mechanism of the PdfTrueTypeFont object. |
Bug | SPIREPDF-5864 | Fixes the issue that the program threw System.IndexOutOfRangeException when converting OFD to PDF. |
Bug | SPIREPDF-5868 | Fixes the issue that the colors were rendered incorrectly when converting PDF to images. |
Bug | SPIREPDF-5869 | Fixes the issue that the “checked” property in PdfCheckBoxWidgetFieldWidget was invalid. |
Bug | SPIREPDF-5876 | Fixes the issue that the content of the picture inside was lost when converting PDF to images. |
Bug | SPIREPDF-5881 | Fixes the issue that the the program threw System.NullPointerException when the Galaxy Kylin ARM system extracted PDF text. |
Spire.Email | ||
Category | ID | Description |
Bug | SPIREEMAIL-65 | Fixes the issue that the email date information read is correct. |
到了这里,关于Spire.Office 8.4.0 Spire.Office Patch的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!