{"id":2248,"date":"2024-10-17T13:09:33","date_gmt":"2024-10-17T13:09:33","guid":{"rendered":"http:\/\/localhost:10003\/?p=2248"},"modified":"2025-08-04T13:56:23","modified_gmt":"2025-08-04T13:56:23","slug":"ajouter-des-elements-a-votre-document-partie-vi","status":"publish","type":"post","link":"https:\/\/xceed.com\/fr\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/","title":{"rendered":"Ajouter des \u00e9l\u00e9ments \u00e0 votre document - Partie VI"},"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>Cette semaine, nous verrons comment ajouter du HTML\/RTF et des formes \u00e0 vos documents.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">HTML\/RTF<\/h2>\n\n\n\n<p>Il existe deux options pour ins\u00e9rer des donn\u00e9es HTML ou RTF dans un document DocX : soit en ins\u00e9rant juste une section de texte, soit en ins\u00e9rant un autre document dans le document actuel.<\/p>\n\n\n\n<p>L'insertion d'un extrait de texte se fait en appelant la fonction&nbsp;<em>Ins\u00e9rer le contenu<\/em>&nbsp;m\u00e9thode.<\/p>\n\n\n\n<p>Le&nbsp;<em>Ins\u00e9rer le contenu<\/em>&nbsp;attend les param\u00e8tres suivants :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Le texte \u00e0 ins\u00e9rer (avec les balises HTML ou RTF)<\/li>\n\n\n\n<li>A\u00a0<em>Type de contenu<\/em>\u00a0valeur permettant de sp\u00e9cifier si le texte \u00e0 ins\u00e9rer contient du HTML ou du RTF<\/li>\n\n\n\n<li>Facultatif : le paragraphe apr\u00e8s lequel ins\u00e9rer le contenu ; s'il est laiss\u00e9 nul, le texte sera ins\u00e9r\u00e9 \u00e0 la position actuelle dans le document.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Append HTML text at the end of the document\ndocument.InsertContent( htmlData1, ContentType.Html);\n\n\/\/ Append HTML text after a specific paragraph\ndocument.InsertContent( htmlData2, ContentType.Html, p1 );\n\n\/\/ Append RTF text at the end of the document\ndocument.InsertContent( rtfData1, ContentType.Rtf);\n\n\/\/ Append RTF text after a specific paragraph\ndocument.InsertContent( rtfData2, ContentType.Rtf, p2 );\n<\/code><\/pre>\n\n\n\n<p>L'insertion d'un document HTML ou RTF dans un document existant se fait en appelant la fonction&nbsp;<em>Ins\u00e9rer un document<\/em>&nbsp;sur le document de destination et en utilisant sa surcharge qui prend en charge les documents HTML\/RTF.<\/p>\n\n\n\n<p>Le&nbsp;<em>Ins\u00e9rer un document<\/em>&nbsp;attend les param\u00e8tres suivants :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Le nom de fichier du document \u00e0 ins\u00e9rer (avec les balises HTML ou RTF)<\/li>\n\n\n\n<li>A\u00a0<em>Type de contenu<\/em>\u00a0valeur permettant de sp\u00e9cifier si le document \u00e0 ins\u00e9rer contient du HTML ou du RTF<\/li>\n\n\n\n<li>Facultatif : le paragraphe apr\u00e8s lequel ins\u00e9rer le document ; s'il est laiss\u00e9 nul, le document sera ajout\u00e9 \u00e0 la position actuelle dans le document de destination.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Append an HTML document at the end of the current document\ndocument.InsertDocument( htmlFilename1, ContentType.Html);\n\n\/\/ Append an HTML document after a specific paragraph in the current document\ndocument.InsertDocument( htmlFilename2, ContentType.Html, p1 );\n\n\/\/ Append an RTF document at the end of the current document\ndocument.InsertDocument( rtfFilename1, ContentType.Rtf);\n\n\/\/ Append an RTF document text after a specific paragraph in the current document\ndocument.InsertDocument( rtfFilename2, ContentType.Rtf, p2 );\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Formes<\/h2>\n\n\n\n<p>&nbsp;Au moment de la r\u00e9daction de cet article, une forme ne peut \u00eatre qu'un rectangle ou une TextBox.<\/p>\n\n\n\n<p>Rectangle<\/p>\n\n\n\n<p>L'ajout d'un rectangle se fait en deux \u00e9tapes :<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Ajouter le rectangle \u00e0 la collection Shape du document en appelant la fonction\u00a0<em>AddShape<\/em>\u00a0m\u00e9thode.<\/li>\n\n\n\n<li>Ajouter le rectangle \u00e0 un paragraphe en appelant la fonction\u00a0<em>InsertShape<\/em>\u00a0m\u00e9thode.<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Add a shape and specify at least a width and height\nvar shape = document.AddShape( 100, 50 );\n\n\/\/ Insert the Shape in a paragraph\nvar p = document.InsertParagraph( \u201cHere is a simple default rectangle, positioned on the 16th character of this paragraph:\u201d );\np.InsertShape( shape, 16 );\n<\/code><\/pre>\n\n\n\n<p>Le&nbsp;<em>AddShape<\/em>&nbsp;n\u00e9cessite une largeur et une hauteur, mais elle accepte \u00e9galement des param\u00e8tres facultatifs suppl\u00e9mentaires : fillColor, outlineColor, outlineWidth et outlineDash.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Add a shape and specify all its properties\nvar shape2 = document.AddShape( 100, 50, Color.Orange, Color.Black, 4f, DashStyle.Dot );\n\n\/\/ Insert the Shape at the end of a paragraph\nvar p2 = document.InsertParagraph( \u201cHere is a custom rectangle appended to this paragraph:\u201d );\np2.InsertShape( shape2 );\n<\/code><\/pre>\n\n\n\n<p>En utilisant les diff\u00e9rentes propri\u00e9t\u00e9s disponibles sur un objet de forme, vous pouvez personnaliser l'affichage d'un rectangle.<\/p>\n\n\n\n<p>Voici un exemple montrant comment vous pouvez ajouter une forme de rectangle avec un texte enveloppant :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create a document.\nusing( var document = DocX.Create( \"AddShapeWithTextWrapping.docx\" ) )\n{\n\t\/\/ Add a title\n\tdocument.InsertParagraph( \"Add a shape with Text Wrapping\" ).FontSize( 15d ).SpacingAfter( 50d ).Alignment = Alignment.center;\n\n\t\/\/ Add a shape and set its wrapping as Square.\n\tvar shape = document.AddShape( 45, 45, Color.LightGray );\n\tshape.WrappingStyle = PictureWrappingStyle.WrapSquare;\n\tshape.WrapText = PictureWrapText.bothSides;\n\n\t\/\/ Set horizontal alignment with Alignment centered on the page.\n\tshape.HorizontalAlignment = WrappingHorizontalAlignment.CenteredRelativeToPage;\n\n\t\/\/ Set vertical alignment with an offset from top of paragraph.\n\tshape.VerticalOffsetAlignmentFrom = WrappingVerticalOffsetAlignmentFrom.Paragraph;\n\tshape.VerticalOffset = 20d;\n\n\t\/\/ Set a buffer on left and right of shape where no text will be drawn.\n\tshape.DistanceFromTextLeft = 5d;\n\tshape.DistanceFromTextRight = 5d;\n\n\t\/\/ Create a paragraph and append the shape to it.\n\tvar p = document.InsertParagraph( \"With its easy to use API, Xceed Words for .NET lets your application create new Microsoft Word .docx or PDF documents, or modify existing .docx documents. It gives you complete control over all content in a Word document, and lets you add or remove all commonly used element types, such as paragraphs, bulleted or numbered lists, images, tables, charts, headers and footers, sections, bookmarks, and more. Create PDF documents using the same API for creating Word documents.\" );\n\tp.Alignment = Alignment.both;\n\tp.AppendShape( shape );\n\tp.SpacingAfter( 50 );\n\n\t\/\/ Save the document\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<p>TextBox<\/p>\n\n\n\n<p>L'ajout d'une forme TextBox se fait en 2 \u00e9tapes :<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Ajouter la zone de texte \u00e0 la collection TextBoxes du document en appelant la fonction\u00a0<em>AddTextBox<\/em>\u00a0m\u00e9thode.<\/li>\n\n\n\n<li>Ajouter la zone de texte \u00e0 un paragraphe en appelant la fonction\u00a0<em>InsertShape<\/em>\u00a0m\u00e9thode.<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Add a TextBox and specify at least a width and height\nvar textBox = document.AddTextBox( 100, 50 );\n\n\/\/ Insert the TextBox in a new paragraph\nvar p = document.InsertParagraph( \u201cHere is a simple TextBox positioned on the 16th character of this paragraph:\u201d );\np.InsertShape( textbox, 16 );\n<\/code><\/pre>\n\n\n\n<p>Le&nbsp;<em>AddTextBox<\/em>&nbsp;n\u00e9cessite une largeur et une hauteur, mais elle accepte \u00e9galement des param\u00e8tres facultatifs suppl\u00e9mentaires : texte, formatage, fillColor, outlineColor, outlineWidth et outlineDash.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Add a shape and specify all its properties\nvar textBox2 = document.AddTextBox( 100, 50, \u201cMy TextBox\u201d, new Formatting() { FontColor = Color.Green } );\ntextBox2.TextVerticalAlignment = VerticalAlignment.Bottom;\ntextBox2.TextMarginBottom = 5d;\ntextBox2.TextMarginTop = 5d;\ntextBox2.TextMarginLeft = 5d;\ntextBox2.TextMarginRight = 5d;\n\n\/\/ Insert the TextBox in a new paragraph\nvar p = document.InsertParagraph( \"Here is a simple TextBox positioned on the 16th character of this paragraph.\" );\np.InsertShape( textBox, 16 );\np.SpacingAfter( 30 );\n\n\/\/ Add a bold paragraph to the TextBox.\ndocument.TextBoxes&#91; 0 ].InsertParagraph( \"My New Paragraph\" ).Bold();\n<\/code><\/pre>\n\n\n\n<p>Note : La classe Shape poss\u00e8de de nombreuses autres propri\u00e9t\u00e9s qui peuvent \u00eatre modifi\u00e9es s\u00e9par\u00e9ment apr\u00e8s la cr\u00e9ation de la forme. Voir la documentation pour plus d'informations.<\/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>","protected":false},"excerpt":{"rendered":"<p>Dans ce sixi\u00e8me et dernier tutoriel de cette s\u00e9rie, nous verrons comment ajouter des HTML\/RTF et des formes \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-2248","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.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Adding more elements to your Document \u2013 Part VI - 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\/ajouter-des-elements-a-votre-document-partie-vi\/\" \/>\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 your Document \u2013 Part VI - Xceed\" \/>\n<meta property=\"og:description\" content=\"In this sixth and final tutorial of this series, we will look at how to add HTML\/RTF\u00a0and Shapes, to your documents.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/fr\/blog\/tutoriels\/ajouter-des-elements-a-votre-document-partie-vi\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T13:09:33+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=\"5 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-your-document-part-vi\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-vi\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Adding more elements to your Document \u2013 Part VI\",\"datePublished\":\"2024-10-17T13:09:33+00:00\",\"dateModified\":\"2025-08-04T13:56:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-vi\\\/\"},\"wordCount\":439,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-vi\\\/#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-your-document-part-vi\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-vi\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-vi\\\/\",\"name\":\"Adding more elements to your Document \u2013 Part VI - Xceed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-vi\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-vi\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WDN.png\",\"datePublished\":\"2024-10-17T13:09:33+00:00\",\"dateModified\":\"2025-08-04T13:56:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-vi\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-vi\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-vi\\\/#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-your-document-part-vi\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Adding more elements to your Document \u2013 Part VI\"}]},{\"@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":"Ajouter des \u00e9l\u00e9ments \u00e0 votre document - Partie VI - 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\/ajouter-des-elements-a-votre-document-partie-vi\/","og_locale":"fr_CA","og_type":"article","og_title":"Adding more elements to your Document \u2013 Part VI - Xceed","og_description":"In this sixth and final tutorial of this series, we will look at how to add HTML\/RTF\u00a0and Shapes, to your documents.","og_url":"https:\/\/xceed.com\/fr\/blog\/tutoriels\/ajouter-des-elements-a-votre-document-partie-vi\/","og_site_name":"Xceed","article_published_time":"2024-10-17T13:09:33+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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Adding more elements to your Document \u2013 Part VI","datePublished":"2024-10-17T13:09:33+00:00","dateModified":"2025-08-04T13:56:23+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/"},"wordCount":439,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/#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-your-document-part-vi\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/","url":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/","name":"Ajouter des \u00e9l\u00e9ments \u00e0 votre document - Partie VI - Xceed","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","datePublished":"2024-10-17T13:09:33+00:00","dateModified":"2025-08-04T13:56:23+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/#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-your-document-part-vi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Adding more elements to your Document \u2013 Part VI"}]},{"@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\/2248","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=2248"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts\/2248\/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=2248"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/categories?post=2248"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/tags?post=2248"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}