{"id":2264,"date":"2024-10-17T16:54:59","date_gmt":"2024-10-17T16:54:59","guid":{"rendered":"http:\/\/localhost:10003\/?p=2264"},"modified":"2025-08-04T13:55:31","modified_gmt":"2025-08-04T13:55:31","slug":"utilisation-de-tableaux-dans-les-classeurs-pour-net","status":"publish","type":"post","link":"https:\/\/xceed.com\/fr\/blog\/tutorials\/using-tables-in-workbooks-for-net\/","title":{"rendered":"Utilisation de tableaux dans les classeurs pour .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>Dans l'article pr\u00e9c\u00e9dent, nous avons vu comment acc\u00e9der et modifier les donn\u00e9es du&nbsp;<em>Cellules<\/em>,&nbsp;<em>Colonnes<\/em>&nbsp;et&nbsp;<em>Rangs<\/em>.<\/p>\n\n\n\n<p>Cette fois-ci, nous allons nous pencher sur l'ajout et la modification de&nbsp;<em>Tableaux<\/em>&nbsp;dans un&nbsp;<em>Feuille de travail<\/em>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Qu'est-ce qu'un tableau ?<\/h2>\n\n\n\n<p>A&nbsp;<em>Tableau<\/em>&nbsp;repr\u00e9sente une plage de cellules dans un&nbsp;<em>Feuille de travail<\/em>. Pour \u00eatre consid\u00e9r\u00e9es comme un tableau, ces cellules doivent \u00eatre ind\u00e9pendantes des autres cellules de la feuille de calcul et regroup\u00e9es de mani\u00e8re \u00e0 former un arrangement rectangulaire de lignes et de colonnes. Des styles int\u00e9gr\u00e9s peuvent \u00eatre utilis\u00e9s pour unifier visuellement ces cellules group\u00e9es.<\/p>\n\n\n\n<p>La ligne d'en-t\u00eate du tableau peut afficher des options de filtrage pour chaque colonne. Une ligne de total peut \u00e9galement \u00eatre ajout\u00e9e, chaque cellule de cette ligne affichera une formule de calcul bas\u00e9e sur les donn\u00e9es de cette colonne (Somme, Moyenne, Nombre, etc.).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Remplir les donn\u00e9es du tableau<\/h2>\n\n\n\n<p>Comme indiqu\u00e9 pr\u00e9c\u00e9demment, un&nbsp;<em>Tableau<\/em>&nbsp;est une plage de cellules dans un&nbsp;<em>Feuille de travail<\/em>La premi\u00e8re \u00e9tape consiste donc \u00e0 remplir les cellules pour conna\u00eetre la plage qu'occupera le tableau.<\/p>\n\n\n\n<p>Pour remplir les valeurs des cellules, nous utilisons ce que nous avons appris dans l'article pr\u00e9c\u00e9dent. La premi\u00e8re ligne contiendra nos en-t\u00eates, tandis que les autres contiendront les donn\u00e9es.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Set the Table's content\n\tusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n\t{\n\t\tvar worksheet = document.Worksheets&#91; 0 ];\n\t\t\n\t\t\/\/ Column 1 (B3:B7)\n\t\tworksheet.Rows&#91; 2 ].Cells&#91; 1 ].Value = \"Employee\";\n\t\tworksheet.Rows&#91; 3 ].Cells&#91; 1 ].Value = \"Nancy Davolio\";\n\t\tworksheet.Rows&#91; 4 ].Cells&#91; 1 ].Value = \"Margaret Peacock\";\n\t\tworksheet.Rows&#91; 5 ].Cells&#91; 1 ].Value = \"Steven Buchanan\";\n\t\tworksheet.Rows&#91; 6 ].Cells&#91; 1 ].Value = \"Laura Callahan\";\n\n\t\t\/\/ Column 2 (C3:C7)\n\t\tworksheet.Rows&#91; 2 ].Cells&#91; 2 ].Value = \"Years of Experience\";\n\t\tworksheet.Rows&#91; 3 ].Cells&#91; 2 ].Value = \"12\";\n\t\tworksheet.Rows&#91; 4 ].Cells&#91; 2 ].Value = \"2\";\n\t\tworksheet.Rows&#91; 5 ].Cells&#91; 2 ].Value = \"9\";\n\t\tworksheet.Rows&#91; 6 ].Cells&#91; 2 ].Value = \"7\";\n\n\t\t\/\/ Column 3 (D3:D7)\n\t\tworksheet.Rows&#91; 2 ].Cells&#91; 3 ].Value = \"Salary\";\n\t\tworksheet.Rows&#91; 3 ].Cells&#91; 3 ].Value = \"75000\";\n\t\tworksheet.Rows&#91; 4 ].Cells&#91; 3 ].Value = \"41000\";\n\t\tworksheet.Rows&#91; 5 ].Cells&#91; 3 ].Value = \"64000\";\n\t\tworksheet.Rows&#91; 6 ].Cells&#91; 3 ].Value = \"55000\";\n\t\t\n\t\tdocument.Save();\n\t}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Ajouter un tableau<\/h2>\n\n\n\n<p>Les tableaux sont stock\u00e9s dans un&nbsp;<em>Collection de tables<\/em>&nbsp;disponible par l'interm\u00e9diaire de l'objet&nbsp;<em>Tableaux<\/em>&nbsp;sur une propri\u00e9t\u00e9&nbsp;<em>Feuille de travail<\/em>. Pour ajouter un tableau, nous utilisons la fonction&nbsp;<em>Ajouter<\/em>&nbsp;que l'on trouve sur le site&nbsp;<em>Collection de tables<\/em>. La m\u00e9thode attend le nom du tableau (facultatif), une plage de cellules (soit par les adresses des cellules, soit d\u00e9finies par des index), le style du tableau et si la ligne d'en-t\u00eate est affich\u00e9e.<\/p>\n\n\n\n<p>Le&nbsp;<em>Ajouter<\/em>&nbsp;prend en charge 4 surcharges :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">(String, String, TableStyle, Boolean): the range of cells is defined by cell addresses.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">(String, String, String, TableStyle, Boolean): the table name is specified, and the range of cells is defined by cell addresses.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">(Int32, Int32, Int32, Int32, TableStyle, Boolean): the range of cells is defined by indexes.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">(String, Int32, Int32, Int32, Int32, TableStyle, Boolean): the table name is specified, and the range of cells is defined by indexes.<\/code><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Add a Table from cell B3 to cell F7\n\tusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n\t{\n\t\tvar worksheet = document.Worksheets&#91; 0 ];\n\n\t\t\/\/ Overload 1: Using addresses, the table name is not specified\n\t\tworksheet.Tables.Add( \"B3\", \"F7\", TableStyle.TableStyleMedium20, true);\n\n\t\t\/\/ Overload 2: Using addresses, the table name is specified\n\t\tworksheet.Tables.Add( \"Results\", \"B3\", \"F7\", TableStyle.TableStyleMedium20, true);\n\n\t\t\/\/ Overload 3: Using indexes, the table name is not specified\n\t\tworksheet.Tables.Add( 2, 1, 6, 5, TableStyle.TableStyleMedium20, true);\n\n\t\t\/\/ Overload 4: Using indexes, the table name is specified\n\t\tworksheet.Tables.Add( \"Results\", 2, 1, 6, 5, TableStyle.TableStyleMedium20, true);\n\n\t\tdocument.Save();\n\t}\n<\/code><\/pre>\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=\"\">If the range of cells is defined by indexes, the sequence is startRowId, startColumnId, endRowId, endColumnId, and the indexes each start at 0. For example, the cell at the address \"A1\" would be at the indexes (0, 0).<\/code><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Acc\u00e8s et modification d'un tableau<\/h2>\n\n\n\n<p>Nous pouvons acc\u00e9der \u00e0 une table existante, par exemple une table qui vient d'\u00eatre ajout\u00e9e, directement \u00e0 partir de l'\u00e9l\u00e9ment&nbsp;<em>Collection de tables<\/em>&nbsp;sur le&nbsp;<em>Feuille de travail<\/em>. Nous pouvons sp\u00e9cifier soit l'index de la table dans la collection, soit son nom.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Fetching a specific Table\n\tvar firstTable = worksheet.Tables&#91; 0 ];\n\tvar myTable = worksheet.Tables&#91; \"Results\" ];\n<\/code><\/pre>\n\n\n\n<p>Maintenant que nous avons le tableau en main, nous pouvons personnaliser certaines de ses propri\u00e9t\u00e9s.<br>La liste des propri\u00e9t\u00e9s disponibles sur le site&nbsp;<em>Tableau<\/em>&nbsp;est disponible dans la documentation&nbsp;<a href=\"https:\/\/doc.xceed.com\/xceed-workbooks-for-net\/webframe.html#topic312.html\" target=\"_blank\" rel=\"noreferrer noopener\">ici<\/a>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Modifying a Table's properties\n\tvar myTable = worksheet.Tables&#91; 0 ];\n\tmyTable.AutoFilter.ShowFilterButton = false;\n\tmyTable.ShowFirstColumnFormatting = true;\n\tmyTable.ShowBandedRows = true;\n<\/code><\/pre>\n\n\n\n<p>Nous pouvons \u00e9galement modifier les colonnes individuelles d'un&nbsp;<em>Tableau<\/em>qui est accessible par l'interm\u00e9diaire de la page d'accueil du tableau.&nbsp;<em>Colonnes<\/em>&nbsp;propri\u00e9t\u00e9.<br>La liste des propri\u00e9t\u00e9s disponibles sur le site&nbsp;<em>TableColumn<\/em>&nbsp;est disponible dans la documentation&nbsp;<a href=\"https:\/\/doc.xceed.com\/xceed-workbooks-for-net\/webframe.html#topic349.html\" target=\"_blank\" rel=\"noreferrer noopener\">ici<\/a>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Modifying a Columns's properties\n\tvar myTable = worksheet.Tables&#91; 0 ];\n\tmyTable.Columns&#91; \"Fruits\" ].TotalRowLabel = \"TOTAL:\";\n\tmyTable.Columns&#91; \"Quantity\" ].TotalRowFunction = TotalRowFunction.Sum;\n<\/code><\/pre>\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>","protected":false},"excerpt":{"rendered":"<p>Dans l'article pr\u00e9c\u00e9dent, nous avons vu comment acc\u00e9der et modifier les cellules, les colonnes et les lignes. Cette fois-ci, nous allons nous pencher sur l'ajout et la modification de tableaux dans une feuille de calcul.<\/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-2264","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.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using Tables in 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\/utilisation-de-tableaux-dans-les-classeurs-pour-net\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Tables in Workbooks for .NET - Xceed\" \/>\n<meta property=\"og:description\" content=\"In the previous article, we covered how to access and modify\u00a0Cells,\u00a0Columns\u00a0and\u00a0Rows. This time we will look into adding and modifying\u00a0Tables\u00a0in a\u00a0Worksheet.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/fr\/blog\/tutoriels\/utilisation-de-tableaux-dans-les-classeurs-pour-net\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T16:54:59+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\\\/using-tables-in-workbooks-for-net\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-tables-in-workbooks-for-net\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Using Tables in Workbooks for .NET\",\"datePublished\":\"2024-10-17T16:54:59+00:00\",\"dateModified\":\"2025-08-04T13:55:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-tables-in-workbooks-for-net\\\/\"},\"wordCount\":414,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-tables-in-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\\\/using-tables-in-workbooks-for-net\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-tables-in-workbooks-for-net\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-tables-in-workbooks-for-net\\\/\",\"name\":\"Using Tables in Workbooks for .NET - Xceed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-tables-in-workbooks-for-net\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-tables-in-workbooks-for-net\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN-1.png\",\"datePublished\":\"2024-10-17T16:54:59+00:00\",\"dateModified\":\"2025-08-04T13:55:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-tables-in-workbooks-for-net\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-tables-in-workbooks-for-net\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-tables-in-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\\\/using-tables-in-workbooks-for-net\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Tables in 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":"Utilisation de tableaux dans les classeurs pour .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\/utilisation-de-tableaux-dans-les-classeurs-pour-net\/","og_locale":"fr_CA","og_type":"article","og_title":"Using Tables in Workbooks for .NET - Xceed","og_description":"In the previous article, we covered how to access and modify\u00a0Cells,\u00a0Columns\u00a0and\u00a0Rows. This time we will look into adding and modifying\u00a0Tables\u00a0in a\u00a0Worksheet.","og_url":"https:\/\/xceed.com\/fr\/blog\/tutoriels\/utilisation-de-tableaux-dans-les-classeurs-pour-net\/","og_site_name":"Xceed","article_published_time":"2024-10-17T16:54:59+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\/using-tables-in-workbooks-for-net\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-tables-in-workbooks-for-net\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Using Tables in Workbooks for .NET","datePublished":"2024-10-17T16:54:59+00:00","dateModified":"2025-08-04T13:55:31+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-tables-in-workbooks-for-net\/"},"wordCount":414,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-tables-in-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\/using-tables-in-workbooks-for-net\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/using-tables-in-workbooks-for-net\/","url":"https:\/\/xceed.com\/blog\/tutorials\/using-tables-in-workbooks-for-net\/","name":"Utilisation de tableaux dans les classeurs pour .NET - Xceed","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-tables-in-workbooks-for-net\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-tables-in-workbooks-for-net\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png","datePublished":"2024-10-17T16:54:59+00:00","dateModified":"2025-08-04T13:55:31+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-tables-in-workbooks-for-net\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/using-tables-in-workbooks-for-net\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/xceed.com\/blog\/tutorials\/using-tables-in-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\/using-tables-in-workbooks-for-net\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Using Tables in 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\/2264","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=2264"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts\/2264\/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=2264"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/categories?post=2264"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/tags?post=2264"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}