{"id":2242,"date":"2024-10-17T12:59:42","date_gmt":"2024-10-17T12:59:42","guid":{"rendered":"http:\/\/localhost:10003\/?p=2242"},"modified":"2025-08-04T13:56:23","modified_gmt":"2025-08-04T13:56:23","slug":"comprender-las-secciones-y-como-utilizarlas","status":"publish","type":"post","link":"https:\/\/xceed.com\/es\/blog\/tutorials\/understanding-sections-and-how-to-use-them\/","title":{"rendered":"Comprender las secciones y c\u00f3mo utilizarlas"},"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>En el art\u00edculo anterior, vimos los fundamentos de la creaci\u00f3n de un documento docx utilizando la funci\u00f3n&nbsp;<em>Cree<\/em>,&nbsp;<em>Carga<\/em>,&nbsp;<em>Ahorra<\/em>&nbsp;y&nbsp;<em>Guardar como<\/em>&nbsp;as\u00ed como la forma de a\u00f1adir p\u00e1rrafos y a\u00f1adirles un poco de texto.<\/p>\n\n\n\n<p>Antes de entrar en qu\u00e9 otros elementos pueden a\u00f1adirse a un documento, aprenderemos primero qu\u00e9 son las Secciones.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Introducci\u00f3n<\/h2>\n\n\n\n<p>Cuando se crea un documento por primera vez, por defecto s\u00f3lo incluye una secci\u00f3n. Esta Secci\u00f3n por defecto incluye los 3 tipos de encabezado\/pie (Primero, Par e Impar), as\u00ed como los par\u00e1metros de formato por defecto.<\/p>\n\n\n\n<p>Cuando se a\u00f1ade una nueva Secci\u00f3n a un Documento, se a\u00f1ade al final del Documento y comienza en una nueva p\u00e1gina (una p\u00e1gina dada nunca tendr\u00e1 2 Secciones superpuestas en ella).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Por qu\u00e9 utilizar diferentes Secciones<\/h2>\n\n\n\n<p>Para entender por qu\u00e9 puede querer tener m\u00e1s de una Secci\u00f3n en su Documento, veamos una lista de algunas de las propiedades \u00fatiles que puede personalizar en cada Secci\u00f3n:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Encabezados \/ pies de p\u00e1gina<\/li>\n\n\n\n<li>M\u00e1rgenes (superior, inferior, izquierdo, derecho, cabecera, pie de p\u00e1gina, m\u00e1rgenes de espejo)<\/li>\n\n\n\n<li>Configuraci\u00f3n de la p\u00e1gina (altura, anchura, bordes, dise\u00f1o, inicio del n\u00famero)<\/li>\n\n\n\n<li>y mucho m\u00e1s (hiperv\u00ednculos, listas, im\u00e1genes, formas, tablas, etc.)<\/li>\n<\/ul>\n\n\n\n<p>Si tiene un documento en el que hay grupos de p\u00e1ginas para los que desear\u00eda diferentes conjuntos de valores para estas propiedades, pondr\u00eda cada grupo de p\u00e1ginas en su propia Secci\u00f3n.<\/p>\n\n\n\n<p>Por ejemplo: un manual de usuario con Secciones para la portada, el \u00cdndice, los cap\u00edtulos que componen el cuerpo principal y, por \u00faltimo, para las p\u00e1ginas de conclusiones y\/o anexos al final:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Portada: s\u00f3lo un t\u00edtulo principal centrado en la pantalla, sin encabezados\/pies de p\u00e1gina.<\/li>\n\n\n\n<li>Tabla de contenido: encabezados\/pies de p\u00e1gina personalizados #1, las p\u00e1ginas cuentan pero no se muestran los n\u00fameros.<\/li>\n\n\n\n<li>Contenido principal: cabeceras\/pies de p\u00e1gina personalizados #2, las p\u00e1ginas cuentan y ahora se muestran los n\u00fameros.<\/li>\n\n\n\n<li>P\u00e1ginas de conclusiones\/anexos: cabeceras\/pies de p\u00e1gina personalizados #3<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Recuperaci\u00f3n de las Secciones existentes<\/h2>\n\n\n\n<p>&nbsp;Para recuperar la lista de Secciones existentes de un Documento, llamamos a su&nbsp;<em>ObtenerSecciones<\/em>&nbsp;m\u00e9todo:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Open an existing document\nusing( var document = DocX.Load( \"ExistingDocument.docx\" ) )\n{\n\tvar sections = document.GetSections();\n\t\/\/ ...\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">A\u00f1adir nuevas secciones<\/h2>\n\n\n\n<p>Para a\u00f1adir una nueva Secci\u00f3n a un Documento, llamamos a la funci\u00f3n&nbsp;<em>InsertarSecci\u00f3nSaltoDeP\u00e1gina<\/em>&nbsp;m\u00e9todo.<\/p>\n\n\n\n<p>A continuaci\u00f3n se muestra un ejemplo m\u00e1s completo que tambi\u00e9n demuestra c\u00f3mo se pueden personalizar las Secciones a trav\u00e9s de algunas de sus propiedades.<\/p>\n\n\n\n<p>En primer lugar, vamos a crear un nuevo documento, y hacer cambios en la Secci\u00f3n por defecto:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">using( var document = DocX.Create( \"InsertSections.docx\" ) )\n{\n\t\/\/ Different odd and even pages headers\/footers\n\tdocument.DifferentOddAndEvenPages = true;\n\n\t\/\/ Section 1 \u2013 Set footers\n\tdocument.Sections&#91;0].AddFooters();\n\tdocument.Sections&#91;0].DifferentFirstPage = true;\n\tvar footers = document.Sections&#91; 0 ].Footers;\n\tfooters.First.InsertParagraph( \"This is the First page footer.\" );\n\tfooters.Even.InsertParagraph( \"This is the Even page footer.\" );\n\tfooters.Odd.InsertParagraph( \"This is the Odd page footer.\" );\n\n\t\/\/ Section 1 - Add paragraphs and page breaks\n\tdocument.InsertParagraph( \"FIRST\" ).InsertPageBreakAfterSelf();\n\tdocument.InsertParagraph( \"SECOND\" ).InsertPageBreakAfterSelf();\n\tdocument.InsertParagraph( \"THIRD\" );\n<\/code><\/pre>\n\n\n\n<p>A continuaci\u00f3n, vamos a a\u00f1adir otra Secci\u00f3n y darle un tama\u00f1o de p\u00e1gina diferente:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\t\/\/ Add a Section Break to end the previous section and add a new one\n\t\/\/ The new section\u2019s properties will be based on the last section\u2019s properties\n\tdocument.InsertSectionPageBreak();\n\n\t\/\/ Section 2 - Set page parameters\n\tdocument.Sections&#91; 1 ].PageWidth = 200f;\n\tdocument.Sections&#91; 1 ].PageHeight = 300f;\n\n\t\/\/ Section 2 - Set footers\n\tdocument.Sections&#91; 1 ].AddFooters();\n\tdocument.Sections&#91; 1 ].DifferentFirstPage = true;\n\tvar footers2 = document.Sections&#91; 1 ].Footers;\n\tfooters2.First.InsertParagraph( \"This is the First page footer of Section 2.\" );\n\tfooters2.Odd.InsertParagraph( \"This is the Odd page footer of Section 2.\" );\n\tfooters2.Even.InsertParagraph( \"This is the Even page footer of Section 2.\" );\n\n\t\/\/ Section 2 - Add paragraphs and page breaks\n\tdocument.InsertParagraph( \"FOURTH\" ).InsertPageBreakAfterSelf();\n\tdocument.InsertParagraph( \"FIFTH\" ).InsertPageBreakAfterSelf();\n\tdocument.InsertParagraph( \"SIXTH\" );\n<\/code><\/pre>\n\n\n\n<p>Por \u00faltimo, a\u00f1adamos una \u00faltima Secci\u00f3n, d\u00e9mosle un nuevo tama\u00f1o de p\u00e1gina y m\u00e1rgenes personalizados:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\t\/\/ Add a Section Break to end the previous section and add a new one\n\t\/\/ The new section\u2019s properties will be based on the last section\u2019s properties\n\tdocument.InsertSectionPageBreak();\n\n\t\/\/ Section 3 - Set page and margin parameters\n\tdocument.Sections&#91; 2 ].PageWidth = 595f;\n\tdocument.Sections&#91; 2 ].PageHeight = 841f;\n\tdocument.Sections&#91; 2 ].MarginTop = 300f;\n\tdocument.Sections&#91; 2 ].MarginFooter = 120f;\n\n\t\/\/ Section 3 - Set footers\n\tdocument.Sections&#91; 2 ].AddFooters();\n\tdocument.Sections&#91; 2 ].DifferentFirstPage = true;\n\tvar footers3 = document.Sections&#91; 2 ].Footers;\n\tfooters3.First.InsertParagraph( \"This is the First page footer of Section 3.\" );\n\tfooters3.Odd.InsertParagraph( \"This is the Odd page footer of Section 3.\" );\n\tfooters3.Even.InsertParagraph( \"This is the Even page footer of Section 3.\" );\n\n\t\/\/ Section 3 - Add paragraphs and page breaks\n\tdocument.InsertParagraph( \"SEVENTH\" ).InsertPageBreakAfterSelf();\n\tdocument.InsertParagraph( \"EIGHTH\" ).InsertPageBreakAfterSelf();\n\tdocument.InsertParagraph( \"NINTH\" );\n\n\t\/\/ Save this document to disk.\n\tdocument.Save();\n}\n<\/code><\/pre>\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>\n\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>Cuando se crea un documento por primera vez, por defecto s\u00f3lo incluye una secci\u00f3n. Esta Secci\u00f3n por defecto incluye los 3 tipos de encabezado\/pie (Primero, Par e Impar), as\u00ed como los par\u00e1metros de formato por defecto.<br \/>\nCuando se a\u00f1ade una nueva Secci\u00f3n a un Documento, se a\u00f1ade al final del Documento y comienza en una nueva p\u00e1gina (una p\u00e1gina dada nunca tendr\u00e1 2 Secciones superpuestas en ella).<\/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-2242","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.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Understanding Sections and how to use them - 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\/comprender-las-secciones-y-como-utilizarlas\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding Sections and how to use them - Xceed\" \/>\n<meta property=\"og:description\" content=\"When a Document is first created, by default it only includes 1 Section. This default Section includes the 3 header\/footer types (First, Even and Odd), as well as the default formatting parameters. When a new Section is added to a Document, it is appended at the end of the Document, and starts on a new page (a given page will never have 2 Sections overlapping on it).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/es\/blog\/tutoriales\/comprender-las-secciones-y-como-utilizarlas\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T12:59:42+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\\\/understanding-sections-and-how-to-use-them\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/understanding-sections-and-how-to-use-them\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Understanding Sections and how to use them\",\"datePublished\":\"2024-10-17T12:59:42+00:00\",\"dateModified\":\"2025-08-04T13:56:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/understanding-sections-and-how-to-use-them\\\/\"},\"wordCount\":435,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/understanding-sections-and-how-to-use-them\\\/#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\\\/understanding-sections-and-how-to-use-them\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/understanding-sections-and-how-to-use-them\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/understanding-sections-and-how-to-use-them\\\/\",\"name\":\"Understanding Sections and how to use them - Xceed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/understanding-sections-and-how-to-use-them\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/understanding-sections-and-how-to-use-them\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WDN.png\",\"datePublished\":\"2024-10-17T12:59:42+00:00\",\"dateModified\":\"2025-08-04T13:56:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/understanding-sections-and-how-to-use-them\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/understanding-sections-and-how-to-use-them\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/understanding-sections-and-how-to-use-them\\\/#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\\\/understanding-sections-and-how-to-use-them\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding Sections and how to use them\"}]},{\"@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":"Comprender las secciones y c\u00f3mo utilizarlas - 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\/comprender-las-secciones-y-como-utilizarlas\/","og_locale":"es_MX","og_type":"article","og_title":"Understanding Sections and how to use them - Xceed","og_description":"When a Document is first created, by default it only includes 1 Section. This default Section includes the 3 header\/footer types (First, Even and Odd), as well as the default formatting parameters. When a new Section is added to a Document, it is appended at the end of the Document, and starts on a new page (a given page will never have 2 Sections overlapping on it).","og_url":"https:\/\/xceed.com\/es\/blog\/tutoriales\/comprender-las-secciones-y-como-utilizarlas\/","og_site_name":"Xceed","article_published_time":"2024-10-17T12:59:42+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\/understanding-sections-and-how-to-use-them\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/understanding-sections-and-how-to-use-them\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Understanding Sections and how to use them","datePublished":"2024-10-17T12:59:42+00:00","dateModified":"2025-08-04T13:56:23+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/understanding-sections-and-how-to-use-them\/"},"wordCount":435,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/understanding-sections-and-how-to-use-them\/#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\/understanding-sections-and-how-to-use-them\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/understanding-sections-and-how-to-use-them\/","url":"https:\/\/xceed.com\/blog\/tutorials\/understanding-sections-and-how-to-use-them\/","name":"Comprender las secciones y c\u00f3mo utilizarlas - Xceed","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/understanding-sections-and-how-to-use-them\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/understanding-sections-and-how-to-use-them\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","datePublished":"2024-10-17T12:59:42+00:00","dateModified":"2025-08-04T13:56:23+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/understanding-sections-and-how-to-use-them\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/understanding-sections-and-how-to-use-them\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/xceed.com\/blog\/tutorials\/understanding-sections-and-how-to-use-them\/#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\/understanding-sections-and-how-to-use-them\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Understanding Sections and how to use them"}]},{"@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\/2242","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=2242"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts\/2242\/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=2242"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/categories?post=2242"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/tags?post=2242"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}