{"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":"anadir-mas-elementos-al-documento-parte-vi","status":"publish","type":"post","link":"https:\/\/xceed.com\/es\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/","title":{"rendered":"A\u00f1adir m\u00e1s elementos al documento - Parte VI"},"content":{"rendered":"<p>M\u00e1s informaci\u00f3n&nbsp;<a href=\"http:\/\/xceed.com\/en\/our-products\/product\/words-for-net\" target=\"_blank\" rel=\"noreferrer noopener\">Xceed Words para .NET<\/a><\/p>\n\n\n\n<p>Esta semana veremos c\u00f3mo a\u00f1adir HTML\/RTF y formas a los documentos.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">HTML\/RTF<\/h2>\n\n\n\n<p>Existen dos opciones para insertar datos HTML o RTF en un documento DocX: insertando s\u00f3lo una secci\u00f3n de texto o insertando otro documento en el actual.<\/p>\n\n\n\n<p>La inserci\u00f3n de un fragmento de texto se realiza llamando a la funci\u00f3n del documento&nbsp;<em>InsertarContenido<\/em>&nbsp;m\u00e9todo.<\/p>\n\n\n\n<p>En&nbsp;<em>InsertarContenido<\/em>&nbsp;espera los siguientes par\u00e1metros:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>El texto a insertar (con las etiquetas HTML o RTF)<\/li>\n\n\n\n<li>A\u00a0<em>Tipo de contenido<\/em>\u00a0para especificar si el texto a insertar contiene HTML o RTF<\/li>\n\n\n\n<li>Opcional: el p\u00e1rrafo tras el que insertar el contenido, si se deja nulo, el texto se insertar\u00e1 en la posici\u00f3n actual del documento.<\/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>La inserci\u00f3n de un documento HTML o RTF en un documento existente se realiza llamando a la funci\u00f3n&nbsp;<em>InsertarDocumento<\/em>&nbsp;en el documento de destino y utilizando su sobrecarga compatible con documentos HTML\/RTF.<\/p>\n\n\n\n<p>En&nbsp;<em>InsertarDocumento<\/em>&nbsp;espera los siguientes par\u00e1metros:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>El nombre de archivo del documento a insertar (con las etiquetas HTML o RTF)<\/li>\n\n\n\n<li>A\u00a0<em>Tipo de contenido<\/em>\u00a0para especificar si el documento a insertar contiene HTML o RTF<\/li>\n\n\n\n<li>Opcional: el p\u00e1rrafo despu\u00e9s del cual insertar el documento, si se deja nulo, el documento se a\u00f1adir\u00e1 en la posici\u00f3n actual en el documento de destino.<\/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\">Formas<\/h2>\n\n\n\n<p>&nbsp;En el momento de escribir este art\u00edculo, una forma s\u00f3lo puede ser un rect\u00e1ngulo o un cuadro de texto.<\/p>\n\n\n\n<p>Rect\u00e1ngulo<\/p>\n\n\n\n<p>A\u00f1adir una forma rectangular se hace en 2 pasos:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>A\u00f1ade el rect\u00e1ngulo a la colecci\u00f3n Shape del documento llamando al m\u00e9todo\u00a0<em>AddShape<\/em>\u00a0m\u00e9todo.<\/li>\n\n\n\n<li>A\u00f1ade el rect\u00e1ngulo a un p\u00e1rrafo llamando a la funci\u00f3n\u00a0<em>InsertShape<\/em>\u00a0m\u00e9todo.<\/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>En&nbsp;<em>AddShape<\/em>&nbsp;requiere una anchura y una altura, pero tambi\u00e9n acepta par\u00e1metros opcionales adicionales: fillColor, outlineColor, outlineWidth y 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>Utilizando las distintas propiedades disponibles en un objeto de forma, puede personalizar c\u00f3mo se muestra una forma rectangular.<\/p>\n\n\n\n<p>A continuaci\u00f3n se muestra un ejemplo de c\u00f3mo a\u00f1adir un rect\u00e1ngulo con texto:<\/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>Cuadro de texto<\/p>\n\n\n\n<p>A\u00f1adir una forma TextBox se hace en 2 pasos:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>A\u00f1ade el cuadro de texto a la colecci\u00f3n TextBoxes del documento llamando al m\u00e9todo\u00a0<em>AddTextBox<\/em>\u00a0m\u00e9todo.<\/li>\n\n\n\n<li>A\u00f1ade el cuadro de texto a un p\u00e1rrafo llamando a la funci\u00f3n\u00a0<em>InsertShape<\/em>\u00a0m\u00e9todo.<\/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>En&nbsp;<em>AddTextBox<\/em>&nbsp;requiere una anchura y una altura, pero tambi\u00e9n acepta par\u00e1metros opcionales adicionales: text, formatting, fillColor, outlineColor, outlineWidth y 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>Nota: La clase Shape tiene muchas otras propiedades que pueden modificarse por separado despu\u00e9s de crear la Shape por primera vez. Consulte la documentaci\u00f3n para obtener m\u00e1s informaci\u00f3n.<\/p>\n\n\n\n<p>Para m\u00e1s informaci\u00f3n, consulte el&nbsp;<a href=\"https:\/\/doc.xceed.com\/xceed-document-libraries-for-net\/webframe.html#rootWelcome.html\" target=\"_blank\" rel=\"noreferrer noopener\">documentaci\u00f3n<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>En este sexto y \u00faltimo tutorial de esta serie, veremos c\u00f3mo a\u00f1adir HTML\/RTF y Formas, a tus documentos.<\/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\/es\/blog\/tutoriales\/anadir-mas-elementos-al-documento-parte-vi\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\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\/es\/blog\/tutoriales\/anadir-mas-elementos-al-documento-parte-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 minutos\" \/>\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\":\"es\",\"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\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-vi\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@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\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\",\"name\":\"Xceed\",\"url\":\"https:\\\/\\\/xceed.com\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@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\":\"es\",\"@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\\\/es\\\/blog\\\/author\\\/jreijaxceed-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"A\u00f1adir m\u00e1s elementos a su documento - Parte 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\/es\/blog\/tutoriales\/anadir-mas-elementos-al-documento-parte-vi\/","og_locale":"es_MX","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\/es\/blog\/tutoriales\/anadir-mas-elementos-al-documento-parte-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 minutos"},"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":"es","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":"A\u00f1adir m\u00e1s elementos a su documento - Parte 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":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-vi\/"]}]},{"@type":"ImageObject","inLanguage":"es","@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":"Proporciona herramientas para que los desarrolladores de .NET, Windows Forms, WPF, Silverlight y ASP.NET puedan crear mejores aplicaciones.","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":"es"},{"@type":"Organization","@id":"https:\/\/xceed.com\/fr\/#organization","name":"Xceed","url":"https:\/\/xceed.com\/fr\/","logo":{"@type":"ImageObject","inLanguage":"es","@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":"es","@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\/es\/blog\/author\/jreijaxceed-com\/"}]}},"_links":{"self":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts\/2248","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/comments?post=2248"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts\/2248\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/media\/2241"}],"wp:attachment":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/media?parent=2248"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/categories?post=2248"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/tags?post=2248"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}