{"id":2262,"date":"2024-10-17T16:27:25","date_gmt":"2024-10-17T16:27:25","guid":{"rendered":"http:\/\/localhost:10003\/?p=2262"},"modified":"2025-08-04T13:55:31","modified_gmt":"2025-08-04T13:55:31","slug":"bases-de-la-creation-dun-xlsx-avec-workbooks-for-net","status":"publish","type":"post","link":"https:\/\/xceed.com\/fr\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/","title":{"rendered":"Les bases de la cr\u00e9ation d'un xlsx avec WorkBooks for .NET"},"content":{"rendered":"<p>En savoir plus sur&nbsp;<a href=\"http:\/\/xceed.com\/en\/our-products\/product\/workbooks-for-net\" target=\"_blank\" rel=\"noreferrer noopener\">Xeed Workbooks pour .NET<\/a><\/p>\n\n\n\n<p>Bienvenue dans cette nouvelle s\u00e9rie ! Cette fois-ci, nous allons passer en revue le dernier ajout \u00e0 la collection Xceed : Workbooks for .NET<\/p>\n\n\n\n<p>Nous commencerons par les bases de la cr\u00e9ation d'un document, puis nous aborderons des sujets plus avanc\u00e9s dans les prochains articles.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Qu'est-ce que ce nouveau Workbooks for .NET ?<\/h2>\n\n\n\n<p>Xceed Workbooks for .NET est un moyen rapide et l\u00e9ger de cr\u00e9er ou de manipuler des documents Microsoft Excel \u00e0 partir de vos applications .NET, sans n\u00e9cessiter l'installation d'Excel ou d'Office.<\/p>\n\n\n\n<p>Gr\u00e2ce \u00e0 son API facile \u00e0 utiliser, Xceed Workbooks for .NET permet \u00e0 votre application de cr\u00e9er ou de modifier des documents Microsoft Excel .xlsx et vous donne un contr\u00f4le total sur le contenu de ces documents. Il vous permet de modifier le contenu des cellules, de redimensionner les colonnes et les lignes, de cr\u00e9er des tableaux format\u00e9s, etc.<\/p>\n\n\n\n<p>Il peut \u00e9galement constituer un excellent outil de reporting, par exemple en cr\u00e9ant des rapports d'entreprise, puis en les utilisant comme mod\u00e8le que vous personnalisez par programmation avant d'envoyer chaque rapport.<\/p>\n\n\n\n<p>Xceed Workbooks for .NET peut \u00eatre utilis\u00e9 pour cr\u00e9er des factures par programmation, ajouter des donn\u00e9es \u00e0 des documents, effectuer des calculs de formule, etc.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Pour commencer<\/h2>\n\n\n\n<p>Cr\u00e9ons notre premier projet !<\/p>\n\n\n\n<p>Tout d'abord, assurez-vous que vous n'avez pas oubli\u00e9 d'ajouter l'instruction using :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">using Xceed.Workbooks.NET;\n<\/code><\/pre>\n\n\n\n<p>Si vous utilisez .NET Core, .NET 5 et au-del\u00e0, vous devrez activer manuellement le produit, mais ne vous inqui\u00e9tez pas, il s'agit d'un processus tr\u00e8s simple. Vous devrez vous assurer d'avoir votre cl\u00e9 de licence \u00e0 port\u00e9e de main pour ce faire.<\/p>\n\n\n\n<p>Si vous utilisez une application console, ajoutez simplement la d\u00e9claration suivante dans le module principal :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">Xceed.Workbooks.NET.Licenser.LicenseKey = \"Your-License-Key\";\n<\/code><\/pre>\n\n\n\n<p>Dans une application Winforms ou WPF, vous devez le d\u00e9finir avant l'instruction InitializeComponent() ;, de sorte qu'il ressemble \u00e0 ceci :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">Xceed.Workbooks.NET.Licenser.LicenseKey = \"Your-License-Key\";\nInitializeComponent();\n<\/code><\/pre>\n\n\n\n<p>Voyons ensuite comment cr\u00e9er simplement un document vierge. 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.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create a new document as a file\nusing( var document = Workbook.Create( \"NewDocument.xlsx\" ) )\n{\n\t\/\/ Save the workbook to the file.\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<p>Une autre option consiste \u00e0 enregistrer le document dans un flux :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create a new document as a stream\nvar stream = new MemoryStream();\nusing( var document = Workbook.Create( stream ) )\n{\n\t\/\/ Save the workbook in the stream.\n\tdocument.Save();\n}\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>). Le document \u00e0 ouvrir peut provenir d'un fichier ou d'un flux, et la nouvelle copie peut \u00e9galement \u00eatre enregistr\u00e9e dans un nouveau fichier ou dans un flux.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Open an existing document from a file\nusing( var document = Workbook.Load( \"ExistingDocument.xlsx\" ) )\n{\n\t\/\/ Save this document to disk to a new file.\n\tdocument.SaveAs( \"NewCopy.docx\" );\n\t\/\/ Save this document to a stream instead\n\tvar stream = new MemoryStream();\n\tdocument.SaveAs( stream );\n}\n\n\/\/ Open an existing document from a stream\nusing( var document = Workbook.Load( existingStream ) )\n{\n\t\/\/ Save this document to disk to a new file.\n\tdocument.SaveAs( \"NewCopy.docx\" );\n\t\/\/ Save this document to a stream instead\n\tvar stream = new MemoryStream();\n\tdocument.SaveAs( stream );\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 all expect either a String or Stream as parameter.<\/code><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Ajouter et r\u00e9cup\u00e9rer des feuilles de travail<\/h2>\n\n\n\n<p>Un document vierge n'est pas tr\u00e8s utile, mais avant d'ajouter du contenu \u00e0 une feuille de calcul, voyons comment nous pouvons ajouter des feuilles de calcul ou en obtenir une sp\u00e9cifique \u00e0 partir de notre document.<\/p>\n\n\n\n<p><code data-no-translation=\"\">Note:<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">A Workbook will always have a Worksheet by default, whether it is created or loaded.<\/code><\/li>\n<\/ul>\n\n\n\n<p>L'ajout d'une nouvelle feuille de calcul s'effectue en appelant la fonction&nbsp;<em>Ajouter<\/em>&nbsp;sur la fonction&nbsp;<em>Feuilles de travail<\/em>&nbsp;du document ; le nom de la feuille de calcul peut \u00e9galement \u00eatre sp\u00e9cifi\u00e9 \u00e0 ce moment-l\u00e0.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Insert a new worksheet.\ndocument.Worksheets.Add();\n\n\/\/ Insert a new worksheet named \"Tests\"\ndocument.Worksheets.Add(\"Tests\");\n<\/code><\/pre>\n\n\n\n<p>Pour rechercher un&nbsp;<em>Feuille de travail<\/em>&nbsp;dans un document, nous utilisons la m\u00e9thode&nbsp;<em>Feuilles de travail<\/em>&nbsp;et sp\u00e9cifier soit l'index bas\u00e9 sur 0, soit le nom de la feuille souhait\u00e9e.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Get the 2nd worksheet\nvar worksheetA = document.Worksheets&#91; 1 ];\n\n\/\/ Get the worksheet named \"Tests\"\nvar worksheetB = document.Worksheets&#91; \"Tests\" ];\n<\/code><\/pre>\n\n\n\n<p>Nous pouvons \u00e9galement v\u00e9rifier si une feuille de calcul sp\u00e9cifique existe d'abord en utilisant la fonction&nbsp;<em>Contient<\/em>&nbsp;sur la fonction&nbsp;<em>Feuilles de travail<\/em>&nbsp;collection.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Verify if a worksheet named \"Tests\" exists in the document\nif ( document.Worksheets.Contains( \"Tests\" ) )\n{\n\tDebug.WriteLine( \"Worksheet Found\" );\n}\n<\/code><\/pre>\n\n\n\n<p>Et voil\u00e0 ! Vos premiers pas dans la cr\u00e9ation d'un document Workbooks (xlsx) \u00e0 l'aide de C#. L'\u00e9tape suivante consistera \u00e0 ajouter et \u00e0 modifier son contenu. Nous commencerons \u00e0 couvrir cela dans notre prochain article. A bient\u00f4t !<\/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-workbooks-for-net\/webframe.html#topic1.html\" target=\"_blank\" rel=\"noreferrer noopener\">la documentation<\/a>.<\/p>\n\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>Bienvenue dans cette nouvelle s\u00e9rie ! Cette fois-ci, nous allons passer en revue le dernier ajout \u00e0 la collection Xceed : Workbooks for .NET.<br \/>\nNous commencerons par les bases de la cr\u00e9ation d'un document, puis nous aborderons des sujets plus avanc\u00e9s dans les prochains articles.<\/p>","protected":false},"author":2,"featured_media":2236,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[141,60],"tags":[],"class_list":["post-2262","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.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Basics of creating an xlsx with WorkBooks for .NET - 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\/bases-de-la-creation-dun-xlsx-avec-workbooks-for-net\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Basics of creating an xlsx with WorkBooks for .NET - Xceed\" \/>\n<meta property=\"og:description\" content=\"Welcome to a new series! This time we will go over the latest addition to the Xceed collection: Workbooks for .NET. First, we will start with the basics of how to create a document and learn more advanced topics as we go in the next few articles\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/fr\/blog\/tutoriels\/bases-de-la-creation-dun-xlsx-avec-workbooks-for-net\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T16:27:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-04T13:55:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"393\" \/>\n\t<meta property=\"og:image:height\" content=\"392\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Basics of creating an xlsx with WorkBooks for .NET\",\"datePublished\":\"2024-10-17T16:27:25+00:00\",\"dateModified\":\"2025-08-04T13:55:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/\"},\"wordCount\":583,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN-1.png\",\"articleSection\":[\"All\",\"Tutorials\"],\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/\",\"name\":\"Basics of creating an xlsx with WorkBooks for .NET - Xceed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN-1.png\",\"datePublished\":\"2024-10-17T16:27:25+00:00\",\"dateModified\":\"2025-08-04T13:55:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/#primaryimage\",\"url\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN-1.png\",\"contentUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN-1.png\",\"width\":393,\"height\":392},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/basics-of-creating-an-xlsx-with-workbooks-for-net\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Basics of creating an xlsx with WorkBooks for .NET\"}]},{\"@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":"Les bases de la cr\u00e9ation d'un xlsx avec WorkBooks for .NET - 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\/bases-de-la-creation-dun-xlsx-avec-workbooks-for-net\/","og_locale":"fr_CA","og_type":"article","og_title":"Basics of creating an xlsx with WorkBooks for .NET - Xceed","og_description":"Welcome to a new series! This time we will go over the latest addition to the Xceed collection: Workbooks for .NET. First, we will start with the basics of how to create a document and learn more advanced topics as we go in the next few articles","og_url":"https:\/\/xceed.com\/fr\/blog\/tutoriels\/bases-de-la-creation-dun-xlsx-avec-workbooks-for-net\/","og_site_name":"Xceed","article_published_time":"2024-10-17T16:27:25+00:00","article_modified_time":"2025-08-04T13:55:31+00:00","og_image":[{"width":393,"height":392,"url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png","type":"image\/png"}],"author":"Alain Jreij","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Alain Jreij","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Basics of creating an xlsx with WorkBooks for .NET","datePublished":"2024-10-17T16:27:25+00:00","dateModified":"2025-08-04T13:55:31+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/"},"wordCount":583,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png","articleSection":["All","Tutorials"],"inLanguage":"fr-CA","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/","url":"https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/","name":"Les bases de la cr\u00e9ation d'un xlsx avec WorkBooks for .NET - Xceed","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png","datePublished":"2024-10-17T16:27:25+00:00","dateModified":"2025-08-04T13:55:31+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/#primaryimage","url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png","contentUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png","width":393,"height":392},{"@type":"BreadcrumbList","@id":"https:\/\/xceed.com\/blog\/tutorials\/basics-of-creating-an-xlsx-with-workbooks-for-net\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Basics of creating an xlsx with WorkBooks for .NET"}]},{"@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\/2262","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=2262"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts\/2262\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/media\/2236"}],"wp:attachment":[{"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/media?parent=2262"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/categories?post=2262"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/tags?post=2262"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}