{"id":2240,"date":"2024-10-17T12:57:50","date_gmt":"2024-10-17T12:57:50","guid":{"rendered":"http:\/\/localhost:10003\/?p=2240"},"modified":"2025-08-04T13:56:23","modified_gmt":"2025-08-04T13:56:23","slug":"creation-de-documents-word-par-programmation-avec-xceed-words-for-net-en-c","status":"publish","type":"post","link":"https:\/\/xceed.com\/fr\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/","title":{"rendered":"Cr\u00e9ation de documents Word par programmation avec Xceed Words for .NET en C#"},"content":{"rendered":"<p>En savoir plus sur&nbsp;<a href=\"http:\/\/xceed.com\/en\/our-products\/product\/words-for-net\" target=\"_blank\" rel=\"noreferrer noopener\">Xceed Words pour .NET<\/a><\/p>\n\n\n\n<p>Si vous souhaitez cr\u00e9er des documents Word de mani\u00e8re programmatique \u00e0 l'aide de C#, Xceed Words for .NET est une API puissante et facile \u00e0 utiliser qui peut vous aider \u00e0 r\u00e9aliser ce travail. Dans cet article, nous verrons comment utiliser Xceed Words for .NET pour cr\u00e9er un nouveau document Word et y ajouter du contenu.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Cr\u00e9ation d'un nouveau document Word<br><\/h2>\n\n\n\n<p>Pour cr\u00e9er un nouveau document Word par programmation dans C# \u00e0 l'aide de Xceed Words for .NET, il suffit de sp\u00e9cifier le nom du fichier ou le chemin d'acc\u00e8s et le nom du fichier, puis d'enregistrer le document. Ce processus peut \u00eatre r\u00e9alis\u00e9 avec seulement quelques lignes de code, comme le montre l'exemple ci-dessous :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create a new document\n\tusing( var document = DocX.Create( \"NewDocument.docx\" ) )\n\t{\n\t\t\/\/ Save this document to disk.\n\t\tdocument.Save();\n\t}\n<\/code><\/pre>\n\n\n\n<p>Nous pouvons \u00e9galement ouvrir un document existant au lieu d'en cr\u00e9er un nouveau (en utilisant l'option&nbsp;<em>Chargement<\/em>&nbsp;au lieu de&nbsp;<em>Cr\u00e9er<\/em>), et nous pouvons choisir d'enregistrer dans un nouveau document au lieu d'\u00e9craser le document existant (en utilisant la fonction&nbsp;<em>Sauvegarde<\/em>&nbsp;au lieu de&nbsp;<em>\u00c9conomisez<\/em>):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Open an existing document\n\tusing( var document = DocX.Load( \"ExistingDocument.docx\" ) )\n\t{\n\t\t\/\/ Save this document to disk.\n\t\tdocument.SaveAs( \"NewCopy.docx\" );\n\t}\n\n<\/code><\/pre>\n\n\n\n<p><code data-no-translation=\"\">Notes:<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">The Create, Load and SaveAs methods expect either a String or Stream as parameter.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">The Create method also supports an optional parameter to indicate the document type.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">For more information please refer to the documentation.<\/code><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Ajout de paragraphes<\/h2>\n\n\n\n<p>Un document vierge n'est pas tr\u00e8s utile, nous allons donc ajouter quelques paragraphes.<\/p>\n\n\n\n<p>L'ajout d'un paragraphe se fait en appelant&nbsp;<em>Ins\u00e9rerParagraphe<\/em>&nbsp;sur le document. Cette op\u00e9ration renvoie le paragraphe nouvellement cr\u00e9\u00e9, de sorte que nous puissions l'affecter \u00e0 une variable si nous pr\u00e9voyons d'y apporter des modifications.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Insert a blank paragraph.\ndocument.InsertParagraph();\n\n\/\/ Insert a paragraph that we want to modify.\nvar p = document.InsertParagraph();\n<\/code><\/pre>\n\n\n\n<p>Une fois que nous avons un paragraphe en main, nous pouvons le modifier de plusieurs fa\u00e7ons. Nous pouvons ajouter des \u00e9l\u00e9ments tels que du texte, un signet, un lien hypertexte, une image, etc. Nous pouvons \u00e9galement modifier le format, comme la famille de police, la taille de la police, la couleur, la mise en gras\/italique\/soulign\u00e9, etc.<\/p>\n\n\n\n<p>Pour l'instant, nous nous concentrerons sur l'ajout de texte simple et nous examinerons quelques fa\u00e7ons de personnaliser l'aspect de ce texte.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Ajouter du texte \u00e0 un paragraphe<\/h2>\n\n\n\n<p>L'ajout de texte peut se faire en appelant&nbsp;<em>Ajouter<\/em>&nbsp;sur le paragraphe. Si le texte que nous ajoutons doit avoir une certaine apparence, cela peut \u00e9galement \u00eatre sp\u00e9cifi\u00e9 en m\u00eame temps.<\/p>\n\n\n\n<p>Voici quelques exemples :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Append text without any formatting\nvar p1 = document.InsertParagraph();\np1.Append(\u201cThis is the first paragraph.\u201d);\n\n\/\/ Append text formatted to be Red and Bold\nvar p2 = document.InsertParagraph();\np2.Append(\u201cThis is the second paragraph.\u201d)\n.Color( Color.Red )\n.Bold();\n\n\/\/ Append text formatted to be in Arial and size 24\nvar p3 = document.InsertParagraph();\np3.Append(\u201cThis is the third paragraph.\u201d)\n.Font( new Xceed.Document.NET.Font( \"Arial\" ) )\n.FontSize( 24 );\n<\/code><\/pre>\n\n\n\n<p>Il est \u00e9galement possible d'ajouter plusieurs blocs de texte en m\u00eame temps et de les doter chacun de leur propre formatage :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Append text formatted to be Red and Bold\nvar p = document.InsertParagraph();\np.Append(\u201cThis is a simple formatted red bold paragraph\u201d)\n.Font( new Xceed.Document.NET.Font( \"Arial\" ) )\n.FontSize( 24 )\n.Color( Color.Red )\n.Bold()\n.Append(\u201c containing a blue italic text.\u201d)\n.Font( new Xceed.Document.NET.Font( \"Times New Roman\" ) )\n.Color( Color.Blue )\n.Italic();<\/code><\/pre>\n\n\n\n<p><code data-no-translation=\"\">Notes:<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">The Append method also supports an optional parameter to indicate the Formatting.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">This Formatting parameter allows you to set a common format and re-use it more easily.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">For more information please refer to the documentation.<\/code><\/li>\n<\/ul>\n\n\n\n<p>Voici les premi\u00e8res \u00e9tapes de la cr\u00e9ation d'un document Word (docx) \u00e0 l'aide de C#. D'autres articles seront bient\u00f4t disponibles pour vous aider \u00e0 apprendre des fonctionnalit\u00e9s plus avanc\u00e9es.<\/p>\n\n\n\n<p>Pour plus d'informations, veuillez vous r\u00e9f\u00e9rer \u00e0 la&nbsp;<a href=\"https:\/\/doc.xceed.com\/xceed-document-libraries-for-net\/webframe.html#rootWelcome.html\" target=\"_blank\" rel=\"noreferrer noopener\">la documentation<\/a>.<\/p>\n\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>Si vous souhaitez cr\u00e9er des documents Word de mani\u00e8re programmatique \u00e0 l'aide de C#, Xceed Words for .NET est une API puissante et facile \u00e0 utiliser qui peut vous aider \u00e0 r\u00e9aliser ce travail. Dans cet article, nous verrons comment utiliser Xceed Words for .NET pour cr\u00e9er un nouveau document Word et y ajouter du contenu.<\/p>","protected":false},"author":2,"featured_media":2241,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[141,60],"tags":[],"class_list":["post-2240","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-all","category-tutorials"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Creating Word Documents Programmatically with Xceed Words for .NET in C# - Xceed<\/title>\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\/tutoriels\/creation-de-documents-word-par-programmation-avec-xceed-words-for-net-en-c\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating Word Documents Programmatically with Xceed Words for .NET in C# - Xceed\" \/>\n<meta property=\"og:description\" content=\"If you want to create Word documents programmatically using C#, Xceed Words for .NET is a powerful and easy-to-use API that can help you get the job done. In this article, we&#039;ll explore how to use Xceed Words for .NET to create a new Word document and add content to it.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/fr\/blog\/tutoriels\/creation-de-documents-word-par-programmation-avec-xceed-words-for-net-en-c\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T12:57:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-04T13:56:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png\" \/>\n\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t<meta property=\"og:image:height\" content=\"350\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Creating Word Documents Programmatically with Xceed Words for .NET in C#\",\"datePublished\":\"2024-10-17T12:57:50+00:00\",\"dateModified\":\"2025-08-04T13:56:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/\"},\"wordCount\":393,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WDN.png\",\"articleSection\":[\"All\",\"Tutorials\"],\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/\",\"name\":\"Creating Word Documents Programmatically with Xceed Words for .NET in C# - Xceed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WDN.png\",\"datePublished\":\"2024-10-17T12:57:50+00:00\",\"dateModified\":\"2025-08-04T13:56:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/#primaryimage\",\"url\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WDN.png\",\"contentUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WDN.png\",\"width\":350,\"height\":350},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Creating Word Documents Programmatically with Xceed Words for .NET in C#\"}]},{\"@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":"Cr\u00e9er des documents Word de mani\u00e8re programmatique avec Xceed Words for .NET dans C# - Xceed","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\/tutoriels\/creation-de-documents-word-par-programmation-avec-xceed-words-for-net-en-c\/","og_locale":"fr_CA","og_type":"article","og_title":"Creating Word Documents Programmatically with Xceed Words for .NET in C# - Xceed","og_description":"If you want to create Word documents programmatically using C#, Xceed Words for .NET is a powerful and easy-to-use API that can help you get the job done. In this article, we'll explore how to use Xceed Words for .NET to create a new Word document and add content to it.","og_url":"https:\/\/xceed.com\/fr\/blog\/tutoriels\/creation-de-documents-word-par-programmation-avec-xceed-words-for-net-en-c\/","og_site_name":"Xceed","article_published_time":"2024-10-17T12:57:50+00:00","article_modified_time":"2025-08-04T13:56:23+00:00","og_image":[{"width":350,"height":350,"url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","type":"image\/png"}],"author":"Alain Jreij","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Alain Jreij","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Creating Word Documents Programmatically with Xceed Words for .NET in C#","datePublished":"2024-10-17T12:57:50+00:00","dateModified":"2025-08-04T13:56:23+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/"},"wordCount":393,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","articleSection":["All","Tutorials"],"inLanguage":"fr-CA","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/","url":"https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/","name":"Cr\u00e9er des documents Word de mani\u00e8re programmatique avec Xceed Words for .NET dans C# - Xceed","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","datePublished":"2024-10-17T12:57:50+00:00","dateModified":"2025-08-04T13:56:23+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/#primaryimage","url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","contentUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","width":350,"height":350},{"@type":"BreadcrumbList","@id":"https:\/\/xceed.com\/blog\/tutorials\/creating-word-documents-programmatically-with-xceed-words-for-net-in-c\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Creating Word Documents Programmatically with Xceed Words for .NET in C#"}]},{"@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\/2240","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=2240"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts\/2240\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/media\/2241"}],"wp:attachment":[{"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/media?parent=2240"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/categories?post=2240"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/tags?post=2240"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}