{"id":2243,"date":"2024-10-17T13:01:31","date_gmt":"2024-10-17T13:01:31","guid":{"rendered":"http:\/\/localhost:10003\/?p=2243"},"modified":"2025-08-04T13:56:23","modified_gmt":"2025-08-04T13:56:23","slug":"anadir-mas-elementos-a-un-documento-parte-i","status":"publish","type":"post","link":"https:\/\/xceed.com\/es\/blog\/tutorials\/adding-more-elements-to-a-document-part-i\/","title":{"rendered":"A\u00f1adir m\u00e1s elementos a un documento - Parte I"},"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>Ahora que conocemos los conceptos b\u00e1sicos de la creaci\u00f3n de un nuevo documento y c\u00f3mo utilizar las diferentes Secciones, vamos a ver los elementos que se pueden a\u00f1adir en un documento. Hay mucho que cubrir, as\u00ed que esto se dividir\u00e1 en varias partes.<\/p>\n\n\n\n<p>En esta ocasi\u00f3n, veremos c\u00f3mo a\u00f1adir Listas e Im\u00e1genes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Listas<\/h2>\n\n\n\n<p>Para a\u00f1adir una lista, llame a&nbsp;<em>AddList<\/em>&nbsp;en el Documento. Hay 2 tipos de listas que se pueden a\u00f1adir: Numeradas y con vi\u00f1etas. Una vez creada la lista, podemos a\u00f1adirle elementos llamando a&nbsp;<em>AddListItem<\/em>&nbsp;en el Documento.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Par\u00e1metros al crear una lista con&nbsp;<em>AddList<\/em>: listText, level, listType, startNumber, trackChanges, continueNumbering y formatting. Todos estos par\u00e1metros son opcionales.<\/li>\n\n\n\n<li>Par\u00e1metros al a\u00f1adir elementos a una lista con&nbsp;<em>AddListItem<\/em>: list, listText, level, listType, startNumber, trackChanges, continueNumbering y formatting. S\u00f3lo list y listText son obligatorios, los dem\u00e1s son opcionales.<\/li>\n<\/ul>\n\n\n\n<p>Nota: si ya dispone de una lista, puede a\u00f1adirla llamando a&nbsp;<em>AddList<\/em>&nbsp;y utilizando la otra sobrecarga que s\u00f3lo toma como par\u00e1metro una lista existente.<\/p>\n\n\n\n<p>Lista numerada<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create a document\nusing( var document = DocX.Create( \u201cAddNumberedList.docx\u201d ) )\n{\n\t\/\/ Add a numbered list where the first ListItem starts with number 1\n\tvar numberedList = document.AddList(\u201cBerries\u201d, 0, ListItemType,Numbered, 1);\n\t\n\t\/\/ Add sub-items (level 1) to the preceding ListItem\n\tdocument.AddListItem( numberedList, \u201cStrawberries\u201d, 1 );\n\tdocument.AddListItem( numberedList, \u201cBlueberries\u201d, 1 );\n\t\n\t\/\/ Add an item (level 0)\n\tdocument.AddListItem( numberedList, \u201cBanana\u201d );\n\n\t\/\/ Add an item (level 0)\n\tdocument.AddListItem( numberedList, \u201cApples\u201d );\n\n\t\/\/ Add sub-items (level 1) to the preceding item\n\tdocument.AddListItem( numberedList, \u201cGala\u201d, 1 );\n\tdocument.AddListItem( numberedList, \u201cHoneycrisp\u201d, 1 );\n\n\t\/\/ Insert the list into the document\n\tdocument.InsertParagraph( \u201cThis is a Numbered List:n\u201d );\n\tdocument.InsertList( numberedList );\n\n\t\/\/ Save the document\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<p>Lista con vi\u00f1etas<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create a document\nusing( var document = DocX.Create( \u201cAddBulletedList.docx\u201d ) )\n{\n\t\/\/ Add a bulleted list with its first item\n\tvar bulletedList = document.AddList(\u201cCanada\u201d, 0, ListItemType.Bulleted );\n\n\t\/\/ Add sub-items (level 1) to the preceding ListItem\n\tdocument.AddListItem( bulletedList, \u201cMontreal\u201d, 1 );\n\tdocument.AddListItem( bulletedList, \u201cToronto\u201d, 1 );\n\n\t\/\/ Add an item (level 0)\n\tdocument.AddListItem( bulletedList, \u201cBrazil\u201d );\n\n\t\/\/ Add an item (level 0)\n\tdocument.AddListItem( bulletedList, \u201cUSA\u201d );\n\n\t\/\/ Add sub-items (level 1) to the preceding item\n\tdocument.AddListItem( bulletedList, \u201cNew York\u201d, 1 );\n\tdocument.AddListItem( bulletedList, \u201cLos Angeles\u201d, 1 );\n\n\t\/\/ Insert the list into the document\n\tdocument.InsertParagraph( \u201cThis is a Bulleted List:n\u201d );\n\tdocument.InsertList( bulletedList );\n\n\t\/\/ Save the document\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Fotos<\/h2>\n\n\n\n<p>A\u00f1adir una imagen se hace en 3 pasos:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>A\u00f1ade la imagen al documento con el m\u00e9todo AddImage.<\/li>\n\n\n\n<li>Llama al m\u00e9todo CreatePicture de la imagen para crear un objeto imagen.<\/li>\n\n\n\n<li>A\u00f1ade la imagen al documento llamando al m\u00e9todo AppendPicture.<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create a document\nusing( var document = DocX.Create( \u201cAddPicture.docx\u201d ) )\n{\n\t\/\/ Add a simple image from disk\n\tvar image = document.AddImage( \u201cballoon.jpg\u201d  );\n\n\t\/\/ Set Picture height and width\n\tvar picture = image.CreatePicture( 150, 150 );\n\n\t\/\/ Insert Picture in paragraph\n\tvar p = document.InsertParagraph( \u201cHere is a simple picture added from disk:\u201d );\n\tp.AppendPicture( picture );\n\n\t\/\/ Save the document\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<p>Utilizando las propiedades disponibles en un objeto de imagen, tambi\u00e9n puede personalizar c\u00f3mo se muestra una imagen.<\/p>\n\n\n\n<p>Este es un ejemplo de c\u00f3mo a\u00f1adir una imagen con texto:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create a document\nusing( var document = DocX.Create( \"AddPictureWithTextWrapping.docx\" ) )\n{\n\t\/\/ Add a simple image from disk\n\tvar image = document.AddImage( \"WordsIcon.png\" );\n\n\t\/\/ Set Picture height and width, and set its wrapping as Square\n\tvar picture = image.CreatePicture( 60, 60 );\n\tpicture.WrappingStyle = PictureWrappingStyle.WrapSquare;\n\tpicture.WrapText = PictureWrapText.bothSides;\n\n\t\/\/ Set horizontal alignment with Alignement centered on the page.\n\tpicture.HorizontalAlignment = PictureHorizontalAlignment.CenteredRelativeToPage;\n\n\t\/\/ Set vertical alignement with an offset from top of paragraph.\n\tpicture.VerticalOffsetAlignmentFrom = PictureVerticalOffsetAlignmentFrom.Paragraph;\n\tpicture.VerticalOffset = 25d;\n\n\t\/\/ Set a buffer on left and right of picture where no text will be drawn.\n\tpicture.DistanceFromTextLeft = 5d;\n\tpicture.DistanceFromTextRight = 5d;\n\n\t\/\/ Add a paragraph and the picture in 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.InsertPicture( picture );\n\n\t\/\/ Save the document\n\tdocument.Save();\n}<\/code><\/pre>\n\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>Ahora que conocemos los conceptos b\u00e1sicos de la creaci\u00f3n de un nuevo documento y c\u00f3mo utilizar las diferentes Secciones, vamos a ver los elementos que se pueden a\u00f1adir en un documento. Hay mucho que cubrir, as\u00ed que esto se dividir\u00e1 en varias partes.<\/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-2243","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-all","category-tutorials"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Adding more elements to a Document - Part I - 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-a-un-documento-parte-i\/\" \/>\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 a Document - Part I - Xceed\" \/>\n<meta property=\"og:description\" content=\"Now that we know the basics of creating a new document and how to\u00a0use different Sections, let\u2019s look at the elements that can be added in a document. There is a lot to cover, so this will be split in multiple parts.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/es\/blog\/tutoriales\/anadir-mas-elementos-a-un-documento-parte-i\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T13:01:31+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 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-a-document-part-i\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-i\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Adding more elements to a Document &#8211; Part I\",\"datePublished\":\"2024-10-17T13:01:31+00:00\",\"dateModified\":\"2025-08-04T13:56:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-i\\\/\"},\"wordCount\":275,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-i\\\/#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-a-document-part-i\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-i\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-i\\\/\",\"name\":\"Adding more elements to a Document - Part I - Xceed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-i\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-i\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WDN.png\",\"datePublished\":\"2024-10-17T13:01:31+00:00\",\"dateModified\":\"2025-08-04T13:56:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-i\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-i\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-a-document-part-i\\\/#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-i\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Adding more elements to a Document &#8211; Part I\"}]},{\"@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 un documento - Parte I - 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-a-un-documento-parte-i\/","og_locale":"es_MX","og_type":"article","og_title":"Adding more elements to a Document - Part I - Xceed","og_description":"Now that we know the basics of creating a new document and how to\u00a0use different Sections, let\u2019s look at the elements that can be added in a document. There is a lot to cover, so this will be split in multiple parts.","og_url":"https:\/\/xceed.com\/es\/blog\/tutoriales\/anadir-mas-elementos-a-un-documento-parte-i\/","og_site_name":"Xceed","article_published_time":"2024-10-17T13:01:31+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 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-i\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-i\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Adding more elements to a Document &#8211; Part I","datePublished":"2024-10-17T13:01:31+00:00","dateModified":"2025-08-04T13:56:23+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-i\/"},"wordCount":275,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-i\/#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-a-document-part-i\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-i\/","url":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-i\/","name":"A\u00f1adir m\u00e1s elementos a un documento - Parte I - Xceed","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-i\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-i\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","datePublished":"2024-10-17T13:01:31+00:00","dateModified":"2025-08-04T13:56:23+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-i\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-i\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-a-document-part-i\/#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-i\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Adding more elements to a Document &#8211; Part I"}]},{"@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\/2243","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=2243"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts\/2243\/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=2243"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/categories?post=2243"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/tags?post=2243"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}