{"id":3778,"date":"2026-06-21T22:01:48","date_gmt":"2026-06-22T02:01:48","guid":{"rendered":"https:\/\/xceed.com\/?p=3778"},"modified":"2026-06-23T13:54:16","modified_gmt":"2026-06-23T17:54:16","slug":"xceed-june-2026-release","status":"publish","type":"post","link":"https:\/\/xceed.com\/fr\/blog\/uncategorized\/xceed-june-2026-release\/","title":{"rendered":"Explore the Xceed June 2026 release, featuring Words for .NET 6.0, SFTP for .NET 7.4, PDF Library 3.0, Toolkit Plus, DataGrid, and Zip updates."},"content":{"rendered":"<div data-elementor-type=\"wp-post\" data-elementor-id=\"3778\" class=\"elementor elementor-3778\" data-elementor-post-type=\"post\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9c719a6 e-con-full e-flex e-con e-parent\" data-id=\"9c719a6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-755bc17 elementor-widget elementor-widget-html\" data-id=\"755bc17\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div style=\"background:#fff8f4;border:1px solid #f8d7c7;padding:20px 22px;border-radius:12px;margin:24px 0;\">\n  <p style=\"margin:0;line-height:1.7;\">\n    The Xceed June 2026 release delivers major updates across six products. The headline release is Xceed Words for .NET 6.0, introducing a powerful Word-to-HTML conversion engine, flexible document splitting, advanced charting capabilities, and numerous document-generation enhancements. Additional updates arrive for Xceed SFTP for .NET 7.4, Xceed PDF Library for .NET 3.0, Xceed Toolkit Plus for WPF 5.2, Xceed DataGrid for WPF 7.3, and Xceed Zip for COM\/ActiveX and x64 6.6.\n  <\/p>\n<\/div>\n\n<p>\nThis is our summer 2026 release, and it brings meaningful improvements across six products. Xceed Words for .NET 6.0 is the clear centerpiece, while Xceed SFTP for .NET 7.4 introduces post-quantum cryptography designed to protect future communications.\n<\/p>\n\n<p>\nUpdates also ship for Xceed PDF Library for .NET, Toolkit Plus for WPF, DataGrid for WPF, and Xceed Zip for COM\/ActiveX and x64. Here's what you need to know.\n<\/p>\n\n<h2 style=\"margin-top:40px;color:#f26522;\">Xceed Words for .NET 6.0<\/h2>\n\n<p>\nWe jumped Words a full version, from 5.2 directly to 6.0, because the capabilities introduced in this release warrant it. The largest addition is a brand-new HTML export engine, but there are significant improvements throughout the product.\n<\/p>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Export Word Documents to HTML<\/h2>\n\n<p>\nYou can now convert Word documents into clean, standards-compliant HTML with a single API call using the new <strong>ConvertToHtml<\/strong> method on DocX.\n<\/p>\n\n<div style=\"background:linear-gradient(135deg,#fff4ec 0%,#fffaf7 100%);border-left:6px solid #f26522;padding:18px 20px;margin:18px 0;border-radius:12px;box-shadow:0 8px 24px rgba(242,101,34,0.10);\">\n  <h3 style=\"margin:0 0 10px 0;color:#f26522;font-weight:800;\">Simple HTML Conversion<\/h3>\n  <div style=\"margin:0;line-height:1.7;color:#1f2937;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,'Liberation Mono','Courier New',monospace;font-size:0.98em;\">\n    var document = DocX.Load(\"document.docx\");<br\/>\n    document.ConvertToHtml(\"document.html\");\n  <\/div>\n<\/div>\n\n<p>\nThe exporter gives developers extensive control over the generated output. CSS can be emitted as inline styles, embedded stylesheets, or external files. Images may be embedded as Base64 data URIs, exported separately, or omitted. Fonts can be referenced, embedded, or written as standalone font files.\n<\/p>\n\n<p>\nSupport extends across eight document standards, from modern HTML5 through XHTML 1.1, allowing integration with a wide range of publishing systems, CMS platforms, and content pipelines.\n<\/p>\n\n<p>\nAccessibility options include semantic HTML5 output, ARIA role generation, and preservation of image alternative text.\n<\/p>\n\n<div style=\"background:#fff8f4;border:1px solid #f8d7c7;padding:20px 24px;border-radius:12px;margin:24px 0;\">\n  <ul style=\"padding-left:22px;margin:0;\">\n    <li style=\"margin-bottom:12px;\"><strong>Preserves complex content:<\/strong> Multi-level lists, tables, headers, footers, footnotes, tracked changes, picture bullets, and embedded fonts.<\/li>\n    <li style=\"margin-bottom:12px;\"><strong>Deterministic output:<\/strong> Generate byte-stable HTML suitable for source control and clean file diffs.<\/li>\n    <li style=\"margin-bottom:12px;\"><strong>Custom naming:<\/strong> Re-prefix generated classes and IDs for white-label solutions.<\/li>\n    <li><strong>Accessibility support:<\/strong> Semantic markup with ARIA and preserved alt text.<\/li>\n  <\/ul>\n<\/div>\n\n<p>\nIf you've ever attempted to build a custom Word-to-HTML converter, you know how quickly edge cases multiply. ConvertToHtml replaces months of maintenance with a single, production-ready API.\n<\/p>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Flexible Document Splitting<\/h2>\n\n<p>\nA new Split overload introduces the SplitOptions model, enabling documents to be divided using six different structural markers:\n<\/p>\n\n<div style=\"background:#fff8f4;border:1px solid #f8d7c7;padding:20px 24px;border-radius:12px;margin:24px 0;\">\n  <ul style=\"padding-left:22px;margin:0;\">\n    <li style=\"margin-bottom:12px;\">Headings<\/li>\n    <li style=\"margin-bottom:12px;\">Section breaks<\/li>\n    <li style=\"margin-bottom:12px;\">Signets<\/li>\n    <li style=\"margin-bottom:12px;\">Content controls<\/li>\n    <li style=\"margin-bottom:12px;\">Page breaks<\/li>\n    <li>Column breaks<\/li>\n  <\/ul>\n<\/div>\n\n<p>\nEach marker type includes dedicated options exposing only relevant settings. Developers can match bookmarks using regular expressions, split at specific heading levels, filter by section break type, or divide documents every N page breaks with configurable limits.\n<\/p>\n\n<p>\nExisting splitting functionality remains fully compatible. The new overload extends capabilities without changing current implementations.\n<\/p>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Bigger, More Controllable Charts<\/h2>\n\n<p>\nThis release significantly expands chart generation through pure OOXML. No Microsoft Office installation, COM interop, or server-side licensing is required.\n<\/p>\n\n<div style=\"background:linear-gradient(135deg,#fff4ec 0%,#fffaf7 100%);border-left:6px solid #f26522;padding:18px 20px;margin:18px 0;border-radius:12px;box-shadow:0 8px 24px rgba(242,101,34,0.10);\">\n  <h3 style=\"margin:0 0 10px 0;color:#f26522;font-weight:800;\">New Charting Features<\/h3>\n  <p style=\"margin:0;line-height:1.6;\">\n    Programmable data labels, custom number formatting, leader lines, per-point label control, configurable gridlines, per-point coloring, combo charts, logarithmic axes, and straight-line rendering are now fully supported.\n  <\/p>\n<\/div>\n\n<p>\nBehind the scenes, a new canonical ordering engine ensures generated chart XML follows the proper schema sequence. The result is fewer repair prompts and improved compatibility when opening generated documents in Word.\n<\/p>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Additional Words 6.0 Enhancements<\/h2>\n\n<p>\nSeveral other improvements round out the release:\n<\/p>\n\n<div style=\"background:#fff8f4;border:1px solid #f8d7c7;padding:20px 24px;border-radius:12px;margin:24px 0;\">\n  <ul style=\"padding-left:22px;margin:0;\">\n    <li style=\"margin-bottom:12px;\"><strong>List presets:<\/strong> Up to 20 predefined list styles.<\/li>\n    <li style=\"margin-bottom:12px;\"><strong>Text columns:<\/strong> Multi-column page layouts with built-in presets.<\/li>\n    <li style=\"margin-bottom:12px;\"><strong>Automatic image format detection:<\/strong> PNG, JPEG, and GIF support from streams.<\/li>\n    <li style=\"margin-bottom:12px;\"><strong>Cross-document paragraph insertion:<\/strong> Preserve hyperlinks, charts, comments, and images.<\/li>\n    <li style=\"margin-bottom:12px;\"><strong>Table of contents markers:<\/strong> Create structured TOCs across merged documents.<\/li>\n    <li><strong>PDF conversion fixes:<\/strong> Six corrections covering alignment, merged cells, missing content, and memory issues.<\/li>\n  <\/ul>\n<\/div>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Xceed SFTP for .NET 7.4<\/h2>\n\n<p>\nSFTP for .NET 7.4 introduces a major security enhancement: post-quantum SSH key exchange support.\n<\/p>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Post-Quantum Key Exchange<\/h2>\n\n<p>\nThe hybrid algorithm <strong>mlkem768x25519-sha256<\/strong> is now supported and enabled by default. During SSH negotiation, compatible servers can automatically use this algorithm without requiring code changes.\n<\/p>\n\n<div style=\"background:linear-gradient(135deg,#fff4ec 0%,#fffaf7 100%);border-left:6px solid #f26522;padding:18px 20px;margin:18px 0;border-radius:12px;box-shadow:0 8px 24px rgba(242,101,34,0.10);\">\n  <h3 style=\"margin:0 0 10px 0;color:#f26522;font-weight:800;\">Why It Matters<\/h3>\n  <p style=\"margin:0;line-height:1.6;\">\n    Post-quantum cryptography helps defend against \"store now, decrypt later\" attacks, where encrypted traffic is captured today and decrypted years later once sufficiently powerful quantum computers become available.\n  <\/p>\n<\/div>\n\n<p>\nThe hybrid design combines ML-KEM with Curve25519 and SHA-256, ensuring security remains at least as strong as the traditional method even if future cryptanalysis weakens the post-quantum component.\n<\/p>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Xceed Zip for COM\/ActiveX and Xceed Zip for x64 6.6<\/h2>\n\n<p>\nVersion 6.6 introduces support for dramatically larger file and path names.\n<\/p>\n\n<div style=\"background:#fff8f4;border:1px solid #f8d7c7;padding:20px 24px;border-radius:12px;margin:24px 0;\">\n  <ul style=\"padding-left:22px;margin:0;\">\n    <li style=\"margin-bottom:12px;\"><strong>Previous limit:<\/strong> 260 characters<\/li>\n    <li><strong>New limit:<\/strong> 32,700 characters<\/li>\n  <\/ul>\n<\/div>\n\n<p>\nThis aligns with modern Windows path support and allows deep directory structures and exceptionally long filenames to be archived without issue.\n<\/p>\n\n<p>\nThe enhancement requires a 6.6 license to unlock the expanded limits, though existing licenses remain fully compatible with the release.\n<\/p>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Xceed PDF Library for .NET 3.0<\/h2>\n\n<p>\nPDF Library advances from version 2.0 to 3.0 with a strong focus on editing existing PDFs rather than simply generating new documents.\n<\/p>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Edit Existing PDF Content<\/h2>\n\n<p>\nDevelopers can now search, replace, remove, and restyle text directly within loaded PDFs.\n<\/p>\n\n<div style=\"background:linear-gradient(135deg,#fff4ec 0%,#fffaf7 100%);border-left:6px solid #f26522;padding:18px 20px;margin:18px 0;border-radius:12px;box-shadow:0 8px 24px rgba(242,101,34,0.10);\">\n  <h3 style=\"margin:0 0 10px 0;color:#f26522;font-weight:800;\">PDF Editing Workflow<\/h3>\n  <div style=\"margin:0;line-height:1.7;color:#1f2937;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,'Liberation Mono','Courier New',monospace;font-size:0.98em;\">\n    var results = page.FindText(searchOptions);<br\/>\n    page.ReplaceText(results, \"New Value\");<br\/>\n    page.UpdateTextStyle(results, styleOptions);\n  <\/div>\n<\/div>\n\n<p>\nThe same editing flexibility now extends to graphics, allowing modification of image bounds, opacity, brushes, and path properties without rebuilding entire pages.\n<\/p>\n\n<p>\nAdditional improvements include JPG support, transparency preservation during save operations, expanded watermark capabilities, and a new EncryptionOptions model supporting multiple encryption profiles and granular permissions.\n<\/p>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Xceed Toolkit Plus for WPF 5.2<\/h2>\n\n<p>\nToolkit Plus receives two new controls along with important AvalonDock fixes.\n<\/p>\n\n<div style=\"background:#fff8f4;border:1px solid #f8d7c7;padding:20px 24px;border-radius:12px;margin:24px 0;\">\n  <ul style=\"padding-left:22px;margin:0;\">\n    <li style=\"margin-bottom:12px;\"><strong>ChatControl:<\/strong> A XAML-defined chat interface with customizable message bubbles, timestamps, typing indicators, and input controls.<\/li>\n    <li><strong>WrapPanel ListBox View:<\/strong> Items can now flow horizontally or vertically across rows and columns based on available space.<\/li>\n  <\/ul>\n<\/div>\n\n<p>\nAvalonDock also receives fixes for routed commands inside auto-hide windows and improved resizing behavior for docked content.\n<\/p>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Xceed DataGrid for WPF 7.3<\/h2>\n\n<p>\nDataGrid remains on version 7.3 intentionally. This release focuses on a specific stability and accessibility improvement.\n<\/p>\n\n<p>\nGrouped rows and their children now remain visible and correctly exposed through UI Automation. This improves automated testing reliability while ensuring assistive technologies accurately report grid content to users.\n<\/p>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Suite Updates<\/h2>\n\n<p>\nBoth Xceed Business Suite and Xceed Ultimate Suite now include Xceed Words for .NET 6.0 and Xceed PDF Library for .NET 3.0.\n<\/p>\n\n<p>\nCustomers licensed through either suite automatically receive HTML export capabilities, PDF editing APIs, and every other enhancement included in these releases.\n<\/p>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Release Highlights Checklist<\/h2>\n\n<div style=\"background:#fff8f4;border:1px solid #f8d7c7;padding:20px 24px;border-radius:12px;margin:24px 0;\">\n  <ul style=\"padding-left:22px;margin:0;\">\n    <li style=\"margin-bottom:12px;\"><strong>Words 6.0:<\/strong> Word-to-HTML conversion, advanced splitting, chart enhancements, and document-generation improvements.<\/li>\n    <li style=\"margin-bottom:12px;\"><strong>SFTP 7.4:<\/strong> Post-quantum SSH key exchange enabled by default.<\/li>\n    <li style=\"margin-bottom:12px;\"><strong>PDF Library 3.0:<\/strong> Direct PDF editing, encryption, graphics manipulation, and enhanced watermarking.<\/li>\n    <li style=\"margin-bottom:12px;\"><strong>Zip 6.6:<\/strong> Support for Windows-length paths up to 32,700 characters.<\/li>\n    <li style=\"margin-bottom:12px;\"><strong>Toolkit Plus 5.2:<\/strong> New ChatControl and WrapPanel ListBox support.<\/li>\n    <li><strong>DataGrid 7.3:<\/strong> Improved UI Automation support for grouped content.<\/li>\n  <\/ul>\n<\/div>\n\n<div style=\"text-align:center;padding:36px 24px;margin:36px 0;\">\n  <div style=\"background:#fff4ec;border:1px solid #f3d7c9;border-radius:14px;padding:34px 22px;margin:42px 0;text-align:center;box-shadow:0 8px 24px rgba(242,101,34,0.10);\">\n    <p style=\"font-size:1.15em;line-height:1.6;color:#5b657a;max-width:760px;margin:0 auto 22px auto;\">\n      Ready to update? All Summer 2026 releases are available now, including Xceed Words for .NET 6.0 and Xceed PDF Library for .NET 3.0. Start a free trial or browse the latest NuGet packages to bring these improvements into your applications today.\n    <\/p>\n\n<div style=\"display:flex;justify-content:center;gap:16px;flex-wrap:wrap;margin-top:18px;\">\n  <a href=\"https:\/\/trial.xceed.com\" style=\"display:inline-block;background:#f26522;color:#ffffff;text-decoration:none;padding:14px 28px;border-radius:10px;font-weight:700;font-size:1em;box-shadow:0 6px 18px rgba(242,101,34,0.18);\">\n    Commencez votre essai gratuit\n  <\/a>\n  <a href=\"https:\/\/www.nuget.org\/profiles\/xceed\" style=\"display:inline-block;background:#eef1f5;color:#334155;text-decoration:none;padding:14px 28px;border-radius:10px;font-weight:700;font-size:1em;\">\n    Browse NuGet Packages\n  <\/a>\n<\/div>\n\n\n  <\/div>\n<\/div>\n\n<h2 style=\"margin-top:42px;color:#f26522;\">Frequently Asked Questions<\/h2>\n\n<div style=\"background:#fff8f4;border:1px solid #f8d7c7;padding:20px 22px;border-radius:12px;margin:24px 0;box-shadow:0 6px 18px rgba(242,101,34,0.08);\">\n  <h3 style=\"margin-top:0;color:#222;\">What is the biggest feature in the June 2026 release?<\/h3>\n  <p style=\"margin-bottom:0;\">\n    The largest addition is the new Word-to-HTML conversion engine in Xceed Words for .NET 6.0, which generates standards-compliant HTML with extensive customization options and strong support for complex document structures.\n  <\/p>\n<\/div>\n\n<div style=\"background:#fff8f4;border:1px solid #f8d7c7;padding:20px 22px;border-radius:12px;margin:24px 0;\">\n  <h3 style=\"margin-top:0;color:#222;\">Do I need Microsoft Office installed to generate charts in Words 6.0?<\/h3>\n  <p style=\"margin-bottom:0;\">\n    No. All chart generation is performed through OOXML and does not require Office, COM interop, or server-side Office licensing.\n  <\/p>\n<\/div>\n\n<div style=\"background:#fff8f4;border:1px solid #f8d7c7;padding:20px 22px;border-radius:12px;margin:24px 0;\">\n  <h3 style=\"margin-top:0;color:#222;\">Is post-quantum SSH enabled automatically in SFTP for .NET 7.4?<\/h3>\n  <p style=\"margin-bottom:0;\">\n    Yes. The new mlkem768x25519-sha256 hybrid key exchange algorithm is enabled by default and negotiated automatically with compatible SSH servers.\n  <\/p>\n<\/div>\n\n<div style=\"background:#fff8f4;border:1px solid #f8d7c7;padding:20px 22px;border-radius:12px;margin:24px 0;\">\n  <h3 style=\"margin-top:0;color:#222;\">Can PDF Library 3.0 edit existing PDFs?<\/h3>\n  <p style=\"margin-bottom:0;\">\n    Yes. Version 3.0 introduces direct text search, replacement, removal, style modification, graphic editing, enhanced encryption, and advanced watermarking capabilities.\n  <\/p>\n<\/div>\n\n<div style=\"background:#fff8f4;border:1px solid #f8d7c7;padding:20px 22px;border-radius:12px;margin:24px 0;\">\n  <h3 style=\"margin-top:0;color:#222;\">Are these updates included in Xceed Business Suite and Ultimate Suite?<\/h3>\n  <p style=\"margin-bottom:0;\">\n    Yes. Both suites now include Xceed Words for .NET 6.0 and Xceed PDF Library for .NET 3.0, along with all associated features and improvements.\n  <\/p>\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>This is our summer 2026 release. Four products move, and Xceed Words for .NET 6.0 is the one to look at first. Updates also ship for Xceed PDF Library for .NET, Toolkit Plus for WPF, and DataGrid for WPF. Here are the highlights.<\/p>","protected":false},"author":2,"featured_media":3781,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[141,78,50,1],"tags":[],"class_list":["post-3778","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-all","category-release-notes","category-releases","category-uncategorized"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Xceed June 2026 Release: Words 6.0, SFTP 7.4, PDF Library 3.0<\/title>\n<meta name=\"description\" content=\"Explore the Xceed June 2026 release, featuring Words for .NET 6.0, SFTP for .NET 7.4, PDF Library 3.0, Toolkit Plus, DataGrid, and Zip updates.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xceed.com\/fr\/blog\/non-classe\/xceed-june-2026-release\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Xceed June 2026 Release: Words 6.0, SFTP 7.4, PDF Library 3.0\" \/>\n<meta property=\"og:description\" content=\"Explore the Xceed June 2026 release, featuring Words for .NET 6.0, SFTP for .NET 7.4, PDF Library 3.0, Toolkit Plus, DataGrid, and Zip updates.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/fr\/blog\/non-classe\/xceed-june-2026-release\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-22T02:01:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-23T17:54:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xceed.com\/wp-content\/uploads\/2026\/06\/Xceed-PDF-Library-for-.NET-2.0-15.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Alain Jreij\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alain Jreij\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Explore the Xceed June 2026 release, featuring Words for .NET 6.0, SFTP for .NET 7.4, PDF Library 3.0, Toolkit Plus, DataGrid, and Zip updates.\",\"datePublished\":\"2026-06-22T02:01:48+00:00\",\"dateModified\":\"2026-06-23T17:54:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/\"},\"wordCount\":1320,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Xceed-PDF-Library-for-.NET-2.0-15.png\",\"articleSection\":[\"All\",\"Release Notes\",\"Releases\",\"Uncategorized\"],\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/\",\"name\":\"Xceed June 2026 Release: Words 6.0, SFTP 7.4, PDF Library 3.0\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Xceed-PDF-Library-for-.NET-2.0-15.png\",\"datePublished\":\"2026-06-22T02:01:48+00:00\",\"dateModified\":\"2026-06-23T17:54:16+00:00\",\"description\":\"Explore the Xceed June 2026 release, featuring Words for .NET 6.0, SFTP for .NET 7.4, PDF Library 3.0, Toolkit Plus, DataGrid, and Zip updates.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/#primaryimage\",\"url\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Xceed-PDF-Library-for-.NET-2.0-15.png\",\"contentUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Xceed-PDF-Library-for-.NET-2.0-15.png\",\"width\":1024,\"height\":683},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/uncategorized\\\/xceed-june-2026-release\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Explore the Xceed June 2026 release, featuring Words for .NET 6.0, SFTP for .NET 7.4, PDF Library 3.0, Toolkit Plus, DataGrid, and Zip updates.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/xceed.com\\\/fr\\\/\",\"name\":\"Xceed\",\"description\":\"Provides tools for .NET, Windows Forms, WPF, Silverlight, and ASP.NET developers to create better applications.\",\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/xceed.com\\\/fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-CA\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\",\"name\":\"Xceed\",\"url\":\"https:\\\/\\\/xceed.com\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/cropped-xceed-logo.png\",\"contentUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/cropped-xceed-logo.png\",\"width\":609,\"height\":150,\"caption\":\"Xceed\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\",\"name\":\"Alain Jreij\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87ff2d1efbe1a868809d8d554724877b76941f668176489a42238d867ab8bf06?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87ff2d1efbe1a868809d8d554724877b76941f668176489a42238d867ab8bf06?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87ff2d1efbe1a868809d8d554724877b76941f668176489a42238d867ab8bf06?s=96&d=mm&r=g\",\"caption\":\"Alain Jreij\"},\"url\":\"https:\\\/\\\/xceed.com\\\/fr\\\/blog\\\/author\\\/jreijaxceed-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Xceed June 2026 Release: Words 6.0, SFTP 7.4, PDF Library 3.0","description":"Explore the Xceed June 2026 release, featuring Words for .NET 6.0, SFTP for .NET 7.4, PDF Library 3.0, Toolkit Plus, DataGrid, and Zip updates.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/xceed.com\/fr\/blog\/non-classe\/xceed-june-2026-release\/","og_locale":"fr_CA","og_type":"article","og_title":"Xceed June 2026 Release: Words 6.0, SFTP 7.4, PDF Library 3.0","og_description":"Explore the Xceed June 2026 release, featuring Words for .NET 6.0, SFTP for .NET 7.4, PDF Library 3.0, Toolkit Plus, DataGrid, and Zip updates.","og_url":"https:\/\/xceed.com\/fr\/blog\/non-classe\/xceed-june-2026-release\/","og_site_name":"Xceed","article_published_time":"2026-06-22T02:01:48+00:00","article_modified_time":"2026-06-23T17:54:16+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/xceed.com\/wp-content\/uploads\/2026\/06\/Xceed-PDF-Library-for-.NET-2.0-15.png","type":"image\/png"}],"author":"Alain Jreij","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Alain Jreij","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Explore the Xceed June 2026 release, featuring Words for .NET 6.0, SFTP for .NET 7.4, PDF Library 3.0, Toolkit Plus, DataGrid, and Zip updates.","datePublished":"2026-06-22T02:01:48+00:00","dateModified":"2026-06-23T17:54:16+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/"},"wordCount":1320,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2026\/06\/Xceed-PDF-Library-for-.NET-2.0-15.png","articleSection":["All","Release Notes","Releases","Uncategorized"],"inLanguage":"fr-CA","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/","url":"https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/","name":"Xceed June 2026 Release: Words 6.0, SFTP 7.4, PDF Library 3.0","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2026\/06\/Xceed-PDF-Library-for-.NET-2.0-15.png","datePublished":"2026-06-22T02:01:48+00:00","dateModified":"2026-06-23T17:54:16+00:00","description":"Explore the Xceed June 2026 release, featuring Words for .NET 6.0, SFTP for .NET 7.4, PDF Library 3.0, Toolkit Plus, DataGrid, and Zip updates.","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/#primaryimage","url":"https:\/\/xceed.com\/wp-content\/uploads\/2026\/06\/Xceed-PDF-Library-for-.NET-2.0-15.png","contentUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2026\/06\/Xceed-PDF-Library-for-.NET-2.0-15.png","width":1024,"height":683},{"@type":"BreadcrumbList","@id":"https:\/\/xceed.com\/blog\/uncategorized\/xceed-june-2026-release\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Explore the Xceed June 2026 release, featuring Words for .NET 6.0, SFTP for .NET 7.4, PDF Library 3.0, Toolkit Plus, DataGrid, and Zip updates."}]},{"@type":"WebSite","@id":"https:\/\/xceed.com\/fr\/#website","url":"https:\/\/xceed.com\/fr\/","name":"Xceed","description":"Fournit des outils aux d\u00e9veloppeurs .NET, Windows Forms, WPF, Silverlight et ASP.NET pour cr\u00e9er de meilleures applications.","publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xceed.com\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/xceed.com\/fr\/#organization","name":"Xceed","url":"https:\/\/xceed.com\/fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/xceed.com\/fr\/#\/schema\/logo\/image\/","url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/04\/cropped-xceed-logo.png","contentUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/04\/cropped-xceed-logo.png","width":609,"height":150,"caption":"Xceed"},"image":{"@id":"https:\/\/xceed.com\/fr\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778","name":"Alain Jreij","image":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/secure.gravatar.com\/avatar\/87ff2d1efbe1a868809d8d554724877b76941f668176489a42238d867ab8bf06?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/87ff2d1efbe1a868809d8d554724877b76941f668176489a42238d867ab8bf06?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/87ff2d1efbe1a868809d8d554724877b76941f668176489a42238d867ab8bf06?s=96&d=mm&r=g","caption":"Alain Jreij"},"url":"https:\/\/xceed.com\/fr\/blog\/author\/jreijaxceed-com\/"}]}},"_links":{"self":[{"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts\/3778","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/comments?post=3778"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts\/3778\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/media\/3781"}],"wp:attachment":[{"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/media?parent=3778"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/categories?post=3778"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/tags?post=3778"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}