{"id":2245,"date":"2024-10-17T13:05:47","date_gmt":"2024-10-17T13:05:47","guid":{"rendered":"http:\/\/localhost:10003\/?p=2245"},"modified":"2025-08-04T13:56:23","modified_gmt":"2025-08-04T13:56:23","slug":"ajouter-des-elements-a-un-document-partie-iii","status":"publish","type":"post","link":"https:\/\/xceed.com\/fr\/blog\/tutorials\/adding-more-elements-to-a-document-part-iii\/","title":{"rendered":"Ajouter des \u00e9l\u00e9ments \u00e0 un document - Partie III"},"content":{"rendered":"<p class=\"wp-block-paragraph\">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 class=\"wp-block-paragraph\">Cette semaine, nous allons voir comment ajouter des tableaux \u00e0 vos documents.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Tableaux<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Un tableau est simplement une grille, avec des lignes et des colonnes, qui vous permet d'afficher des informations de mani\u00e8re claire et organis\u00e9e.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Ajout de tableaux<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">L'ajout d'un tableau \u00e0 un document se fait en appelant&nbsp;<em>AddTable<\/em>&nbsp;sur le document. Il y a 2 options :<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">En indiquant le nombre de lignes et de colonnes :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create a new table (initial size of 3 rows and 2 columns).\nvar table = document.AddTable( 3, 2 );\ntable.Design = TableDesign.TableGrid;\n\n\/\/ Insert the new table to the document\ndocument.InsertTable( table );\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">En fournissant un tableau existant :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Retrieve an existing table (ex: from another document)\nvar table = document2.Tables&#91; tableIndex ];\n\n\/\/ Insert the table to the document\ndocument.InsertTable( table );\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Note : Le&nbsp;<em>Conception<\/em>&nbsp;La propri\u00e9t\u00e9 \"Table\" est utilis\u00e9e pour indiquer le dessin \u00e0 appliquer \u00e0 la table. Les valeurs possibles se trouvent dans la page&nbsp;<em>TableDesign<\/em>&nbsp;\u00e9num\u00e9ration. Il y a 50 valeurs diff\u00e9rentes, leurs noms et une petite vignette de r\u00e9f\u00e9rence sont disponibles dans la section&nbsp;<a href=\"https:\/\/doc.xceed.com\/xceed-document-libraries-for-net\/webframe.html#Xceed.Document.NET~Xceed.Document.NET.TableDesign.html\" target=\"_blank\" rel=\"noreferrer noopener\">la documentation<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Suppression des tableaux<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">La suppression d'un tableau existant dans un document s'effectue en appelant&nbsp;<em>Retirer<\/em>&nbsp;sur la table.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Remove an existing table from the document\nvar table = document.Tables&#91; tableIndex ];\ntable.Remove;\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Ajout de rang\u00e9es<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">L'insertion de lignes se fait en appelant&nbsp;<em>InsertRow<\/em>&nbsp;sur la table.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Insert a new Row at the end of a table\nvar table = document.Tables&#91; tableIndex ];\ntable.InsertRow();\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Note : Le&nbsp;<em>InsertRow<\/em>&nbsp;prend en charge 3 autres surcharges :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>(Int32) : Ins\u00e8re une ligne \u00e0 un endroit pr\u00e9cis du tableau.<\/li>\n\n\n\n<li>(Row, Boolean) : Ins\u00e8re une copie de la ligne fournie \u00e0 la fin de ce tableau, et conserve \u00e9ventuellement le m\u00eame formatage que la ligne d'origine.<\/li>\n\n\n\n<li>(Row, Int32, Boolean) : Ins\u00e8re une copie de la ligne fournie \u00e0 un endroit pr\u00e9cis du tableau, en conservant \u00e9ventuellement le m\u00eame formatage que la ligne d'origine.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Suppression des lignes<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">La suppression des lignes se fait en appelant&nbsp;<em>Supprimer la ligne<\/em>&nbsp;sur le tableau. L'appel de la m\u00e9thode sans param\u00e8tre supprimera la derni\u00e8re ligne du tableau, sinon un index peut \u00eatre transmis pour indiquer la ligne \u00e0 supprimer.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Remove the last row from the table\nvar table = document.Tables&#91; tableIndex ];\ntable.RemoveRow();\n\n\/\/ Remove a specific row from the table\ntable.RemoveRow( rowIndex );\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Ajout de colonnes<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">L'insertion de colonnes se fait en appelant&nbsp;<em>Ins\u00e9rer une colonne<\/em>&nbsp;sur la table.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Insert a new Column at the end of a table\nvar table = document.Tables&#91; tableIndex ];\ntable.InsertColumn();\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Note : Le&nbsp;<em>Ins\u00e9rer une colonne<\/em>&nbsp;supporte 1 autre surcharge :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>(Int32, Bool\u00e9en) : Ins\u00e8re une colonne \u00e0 un endroit pr\u00e9cis du tableau.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Suppression des colonnes<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">La suppression des colonnes se fait en appelant&nbsp;<em>RemoveColumn<\/em>&nbsp;sur le tableau. L'appel de la m\u00e9thode sans param\u00e8tre supprimera la derni\u00e8re colonne du tableau, sinon un index peut \u00eatre transmis pour indiquer la colonne \u00e0 supprimer.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Remove the last column from the table\nvar table = document.Tables&#91; tableIndex ];\ntable.RemoveColumn();\n\n\/\/ Remove a specific column from the table\ntable.RemoveColumn( colIndex );\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Fusion de cellules<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Le tableau permet de fusionner plusieurs cellules. Deux sc\u00e9narios sont actuellement pris en charge :<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Fusionner plusieurs cellules dans la m\u00eame ligne en appelant&nbsp;<em>Fusionner les cellules<\/em>&nbsp;sur le rang :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Merge the first 3 cells of the first row\nvar table = document.Tables&#91; tableIndex ];\ntable.Rows&#91; 0 ].MergeCells( 0, 3 );\n\n\/\/ Merge the last 2 cells in the third row\nvar columnCount = table.Rows &#91; 1 ].ColumnCount;\ntable.Rows&#91; 2 ].MergeCells( columnCount - 2, columnCount - 1 );\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Fusionner des cellules dans une colonne sp\u00e9cifique en appelant&nbsp;<em>Fusionner les cellules dans une colonne<\/em>&nbsp;sur la table :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Merge the first cell of rows 2 and 3\nvar table = document.Tables&#91; tableIndex ];\ntable.MergedCellsInColumn( 0, 1, 2 );\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Insertion d'autres \u00e9l\u00e9ments<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Plusieurs autres m\u00e9thodes sont disponibles pour ins\u00e9rer des \u00e9l\u00e9ments sp\u00e9cifiques avant\/apr\u00e8s le tableau. Par exemple, en utilisant&nbsp;<em>InsertListBeforerSelf<\/em>&nbsp;ou&nbsp;<em>InsertListAfterSelf<\/em>&nbsp;pour ins\u00e9rer une liste. Il existe des m\u00e9thodes similaires pour ins\u00e9rer une page, un paragraphe ou un autre tableau.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Exemple<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">L'exemple suivant montre comment cr\u00e9er un tableau dans un document, y ins\u00e9rer des lignes et le remplir de donn\u00e9es.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create a document.\nusing( var document = DocX.Create( \"InsertRowAndDataTable.docx\" ) )\n{\n\t\/\/ Add a Table of 5 rows and 2 columns into the document and sets its values.\n\tvar t = document.AddTable( 5, 2 );\n\tt.Design = TableDesign.ColorfulListAccent1;\n\tt.Alignment = Alignment.center;\n\tt.Rows&#91; 0 ].Cells&#91; 0 ].Paragraphs&#91; 0 ].Append( \"Mike\" );\n\tt.Rows&#91; 0 ].Cells&#91; 1 ].Paragraphs&#91; 0 ].Append( \"65\" );\n\tt.Rows&#91; 1 ].Cells&#91; 0 ].Paragraphs&#91; 0 ].Append( \"Kevin\" );\n\tt.Rows&#91; 1 ].Cells&#91; 1 ].Paragraphs&#91; 0 ].Append( \"62\" );\n\tt.Rows&#91; 2 ].Cells&#91; 0 ].Paragraphs&#91; 0 ].Append( \"Carl\" );\n\tt.Rows&#91; 2 ].Cells&#91; 1 ].Paragraphs&#91; 0 ].Append( \"60\" );\n\tt.Rows&#91; 3 ].Cells&#91; 0 ].Paragraphs&#91; 0 ].Append( \"Michael\" );\n\tt.Rows&#91; 3 ].Cells&#91; 1 ].Paragraphs&#91; 0 ].Append( \"59\" );\n\tt.Rows&#91; 4 ].Cells&#91; 0 ].Paragraphs&#91; 0 ].Append( \"Shawn\" );\n\tt.Rows&#91; 4 ].Cells&#91; 1 ].Paragraphs&#91; 0 ].Append( \"57\" );\n\n\t\/\/ Add a row at the end of the table and sets its values.\n\tvar r = t.InsertRow();\n\tr.Cells&#91; 0 ].Paragraphs&#91; 0 ].Append( \"Mario\" );\n\tr.Cells&#91; 1 ].Paragraphs&#91; 0 ].Append( \"54\" );\n\n\t\/\/ Insert a new Paragraph into the document.\n\tvar p = document.InsertParagraph( \"Xceed Top Players Points:\" );\n\tp.SpacingAfter( 40d );\n\n\t\/\/ Insert the Table after the Paragraph.\n\tp.InsertTableAfterSelf( t );\n\n\t\/\/ Save the document\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">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 class=\"wp-block-paragraph\"><\/p>","protected":false},"excerpt":{"rendered":"<p>Dans ce troisi\u00e8me tutoriel de la s\u00e9rie, nous verrons comment ajouter des tableaux \u00e0 vos documents.<\/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-2245","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 v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Adding more elements to a Document \u2013 Part III - Xceed Software<\/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\/ajouter-des-elements-a-un-document-partie-iii\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Adding more elements to a Document \u2013 Part III - Xceed Software\" \/>\n<meta property=\"og:description\" content=\"In this third tutorial of this series, we will look at how to add Tables to your documents.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/fr\/blog\/tutoriels\/ajouter-des-elements-a-un-document-partie-iii\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed Software\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T13:05:47+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=\"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\\\/adding-more-elements-to-a-document-part-iii\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-iii\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Adding more elements to a Document \u2013 Part III\",\"datePublished\":\"2024-10-17T13:05:47+00:00\",\"dateModified\":\"2025-08-04T13:56:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-iii\\\/\"},\"wordCount\":483,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-iii\\\/#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\\\/adding-more-elements-to-a-document-part-iii\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-iii\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-iii\\\/\",\"name\":\"Adding more elements to a Document \u2013 Part III - Xceed Software\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-iii\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-iii\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WDN.png\",\"datePublished\":\"2024-10-17T13:05:47+00:00\",\"dateModified\":\"2025-08-04T13:56:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-iii\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-iii\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-iii\\\/#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\\\/adding-more-elements-to-a-document-part-iii\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Adding more elements to a Document \u2013 Part III\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/xceed.com\\\/fr\\\/\",\"name\":\"Xceed Software\",\"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 Software\",\"alternateName\":\"Xceed Software\",\"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\\\/2026\\\/07\\\/Untitled-design-24.png\",\"contentUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/Untitled-design-24.png\",\"width\":512,\"height\":512,\"caption\":\"Xceed Software\"},\"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":"Adding more elements to a Document \u2013 Part III - Xceed Software","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\/ajouter-des-elements-a-un-document-partie-iii\/","og_locale":"fr_CA","og_type":"article","og_title":"Adding more elements to a Document \u2013 Part III - Xceed Software","og_description":"In this third tutorial of this series, we will look at how to add Tables to your documents.","og_url":"https:\/\/xceed.com\/fr\/blog\/tutoriels\/ajouter-des-elements-a-un-document-partie-iii\/","og_site_name":"Xceed Software","article_published_time":"2024-10-17T13:05:47+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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-iii\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-iii\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Adding more elements to a Document \u2013 Part III","datePublished":"2024-10-17T13:05:47+00:00","dateModified":"2025-08-04T13:56:23+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-iii\/"},"wordCount":483,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-iii\/#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\/adding-more-elements-to-a-document-part-iii\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-iii\/","url":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-iii\/","name":"Adding more elements to a Document \u2013 Part III - Xceed Software","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-iii\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-iii\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","datePublished":"2024-10-17T13:05:47+00:00","dateModified":"2025-08-04T13:56:23+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-iii\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-iii\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-iii\/#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\/adding-more-elements-to-a-document-part-iii\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Adding more elements to a Document \u2013 Part III"}]},{"@type":"WebSite","@id":"https:\/\/xceed.com\/fr\/#website","url":"https:\/\/xceed.com\/fr\/","name":"Xceed Software","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 Software","alternateName":"Xceed Software","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\/2026\/07\/Untitled-design-24.png","contentUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2026\/07\/Untitled-design-24.png","width":512,"height":512,"caption":"Xceed Software"},"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\/2245","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=2245"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts\/2245\/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=2245"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/categories?post=2245"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/tags?post=2245"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}