{"id":2268,"date":"2024-10-17T17:07:57","date_gmt":"2024-10-17T17:07:57","guid":{"rendered":"http:\/\/localhost:10003\/?p=2268"},"modified":"2025-08-04T13:55:31","modified_gmt":"2025-08-04T13:55:31","slug":"version-1-2-actualizacion-en-libros-de-trabajo-para-net-parte-i","status":"publish","type":"post","link":"https:\/\/xceed.com\/es\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/","title":{"rendered":"Actualizaci\u00f3n de la versi\u00f3n 1.2 en Workbooks for .NET - Parte I"},"content":{"rendered":"<p>M\u00e1s informaci\u00f3n&nbsp;<a href=\"http:\/\/xceed.com\/en\/our-products\/product\/workbooks-for-net\" target=\"_blank\" rel=\"noreferrer noopener\">Cuadernos Xeed para .NET<\/a><\/p>\n\n\n\n<p>La versi\u00f3n 1.2 de Workbooks para .NET fue lanzada recientemente, y con ella vienen nuevas cosas que podemos hacer para personalizar nuestros documentos xlsx. Repasaremos algunas de ellas a lo largo de este y los pr\u00f3ximos art\u00edculos.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Insertar una hoja de c\u00e1lculo<\/h2>\n\n\n\n<p>En nuestro primer art\u00edculo vimos c\u00f3mo a\u00f1adir una hoja de c\u00e1lculo a nuestro documento utilizando la funci\u00f3n&nbsp;<em>A\u00f1adir()<\/em>&nbsp;en el&nbsp;<em>Colecci\u00f3n de hojas de c\u00e1lculo<\/em>. Esto nos permit\u00eda a\u00f1adir una hoja de c\u00e1lculo, pero s\u00f3lo al final de las hojas de c\u00e1lculo existentes. En la v1.2 a\u00f1adimos la funci\u00f3n&nbsp;<em>Insertar()<\/em>&nbsp;para permitir a los usuarios especificar d\u00f3nde quieren a\u00f1adir la nueva hoja de c\u00e1lculo.<\/p>\n\n\n\n<p><code data-no-translation=\"\">Available overloads:<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">Insert(Int32,String) : the destination index and the name of the new Worksheet<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Insert(String,String) : the name of the Worksheet that is currently located where the new Worksheet will be placed, and the name of the new Worksheet<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Insert(Worksheet,String) : the Worksheet that is currently located where the new Worksheet will be placed, and the name of the new Worksheet<\/code><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Inserting a new Worksheet\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\t\/\/ Start: \"Sheet1\", \"Sheet2\", \"Sheet3\"\n\n\t\/\/ Inserting at a specific index\n\tdocument.Worksheets.Insert(2, \"NewSheet1\");\n\t\/\/ Result: \"Sheet1\", \"Sheet2\", \"NewSheet1\", \"Sheet3\"\n\n\t\/\/ Inserting at the location of a specific Worksheet (by name)\n\tdocument.Worksheets.Insert(\"Sheet2\", \"NewSheet2\");\n\t\/\/ Result: \"Sheet1\", \"NewSheet2\", \"Sheet2\", \"NewSheet1\", \"Sheet3\"\n\n\t\/\/ Inserting at the location of a specific Worksheet (by object)\n\tvar position = document.Worksheets&#91; 2 ];\n\tdocument.Worksheets.Insert(position, \"NewSheet3\");\n\t\/\/ Result: \"Sheet1\", \"NewSheet2\", \"NewSheet3\", \"Sheet2\", \"NewSheet1\", \"Sheet3\"\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Insertar filas<\/h2>\n\n\n\n<p>Las filas pueden insertarse utilizando la tecla&nbsp;<em>InsertarFilas()<\/em>&nbsp;disponible en la p\u00e1gina&nbsp;<em>Hoja de trabajo<\/em>&nbsp;clase.<\/p>\n\n\n\n<p>En&nbsp;<em>InsertarFilas()<\/em>&nbsp;tiene los siguientes par\u00e1metros:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">rowId: the id of the Row that is currently located where the new Rows will be inserted<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">count: the number of Rows that will be inserted, 1 by default<\/code><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Inserting rows\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar firstSheet = document.Worksheets&#91; 0 ];\n\n\t\/\/ Insert 5 rows at the top of the worksheet\n\tfirstSheet.InsertRows(0, 5);\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Insertar columnas<\/h2>\n\n\n\n<p>Las columnas pueden insertarse utilizando la funci\u00f3n&nbsp;<em>InsertarColumnas()<\/em>&nbsp;disponible en la p\u00e1gina&nbsp;<em>Hoja de trabajo<\/em>&nbsp;clase.<\/p>\n\n\n\n<p>En&nbsp;<em>InsertarColumnas()<\/em>&nbsp;tiene los siguientes par\u00e1metros:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">columnId: the id of the Column that is currently located where the new Columns will be inserted<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">count: the number or Columns that will be inserted, 1 by default<\/code><\/li>\n<\/ul>\n\n\n\n<p>El m\u00e9todo InsertColumns() tiene 2 sobrecargas, ambas tienen los mismos nombres de par\u00e1metros, pero una usa un entero para columnId para especificar el id de la columna por su \u00edndice, y la otra usa una cadena para especificar el id de la columna por su letra (por ejemplo, id 0 es lo mismo que id \"A\").<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Inserting columns\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar firstSheet = document.Worksheets&#91; 0 ];\n\n\t\/\/ Insert 3 columns at the left of the worksheet using the number index\n\tfirstSheet.InsertColumns(0, 3);\n\n\t\/\/ Insert another 2 columns at the left of the worksheet using the letter index this time\n\tfirstSheet.InsertColumns(\"A\", 2);\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Borrar filas<\/h2>\n\n\n\n<p>Las filas pueden eliminarse mediante la tecla&nbsp;<em>BorrarFilas()<\/em>&nbsp;disponible en la p\u00e1gina&nbsp;<em>Hoja de trabajo<\/em>&nbsp;clase.<\/p>\n\n\n\n<p>En&nbsp;<em>BorrarFilas()<\/em>&nbsp;tiene los siguientes par\u00e1metros:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">rowId: the id of the Row that is currently located where the deletion will start<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">count: the number of Rows that will be deleted, 1 by default<\/code><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Deleting rows\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar firstSheet = document.Worksheets&#91; 0 ];\n\n\t\/\/ Delete the top 5 rows\n\tfirstSheet.DeleteRows(0, 5);\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Borrar columnas<\/h2>\n\n\n\n<p>Las columnas pueden eliminarse mediante la funci\u00f3n&nbsp;<em>BorrarColumnas()<\/em>&nbsp;disponible en la p\u00e1gina&nbsp;<em>Hoja de trabajo<\/em>&nbsp;clase.<\/p>\n\n\n\n<p>En&nbsp;<em>BorrarColumnas()<\/em>&nbsp;tiene los siguientes par\u00e1metros:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">columnId: the id of the Column that is currently located where the deletion will start<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">count: the number or Columns that will be deleted, 1 by default<\/code><\/li>\n<\/ul>\n\n\n\n<p>El m\u00e9todo DeleteColumns() tiene 2 sobrecargas, ambas tienen los mismos nombres de par\u00e1metros, pero una usa un entero para columnId para especificar el id de la columna por su \u00edndice, y la otra usa una cadena para especificar el id de la columna por su letra (por ejemplo, id 0 es lo mismo que id \"A\").<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Deleting columns\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar firstSheet = document.Worksheets&#91; 0 ];\n\n\t\/\/ Delete the 3 left-most columns using the number index\n\tfirstSheet.DeleteColumns(0, 3);\n\n\t\/\/ Delete another 2 columns at the left using the letter index this time\n\tfirstSheet.DeleteColumns(\"A\", 2);\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<p>M\u00e1s informaci\u00f3n en la Parte II, \u00a1siga atento!<\/p>\n\n\n\n<p>Para m\u00e1s informaci\u00f3n, consulte el&nbsp;<a href=\"https:\/\/doc.xceed.com\/xceed-workbooks-for-net\/webframe.html#topic1.html\" target=\"_blank\" rel=\"noreferrer noopener\">documentaci\u00f3n<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>La versi\u00f3n 1.2 de Workbooks para .NET fue lanzada recientemente, y con ella vienen nuevas cosas que podemos hacer para personalizar nuestros documentos xlsx. Repasaremos algunas de ellas a lo largo de este y los pr\u00f3ximos art\u00edculos.<\/p>","protected":false},"author":2,"featured_media":2235,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[141,60],"tags":[],"class_list":["post-2268","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>Version 1.2 Update in Workbooks for .NET - 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\/version-1-2-actualizacion-en-libros-de-trabajo-para-net-parte-i\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Version 1.2 Update in Workbooks for .NET - Part I - Xceed\" \/>\n<meta property=\"og:description\" content=\"Version 1.2 of Workbooks for .NET was released recently, and with it comes new things we can do to customize our xlsx documents. We will go over some of them over this and the next few articles.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/es\/blog\/tutoriales\/version-1-2-actualizacion-en-libros-de-trabajo-para-net-parte-i\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T17:07:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-04T13:55:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.png\" \/>\n\t<meta property=\"og:image:width\" content=\"393\" \/>\n\t<meta property=\"og:image:height\" content=\"392\" \/>\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\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Version 1.2 Update in Workbooks for .NET &#8211; Part I\",\"datePublished\":\"2024-10-17T17:07:57+00:00\",\"dateModified\":\"2025-08-04T13:55:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/\"},\"wordCount\":351,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN.png\",\"articleSection\":[\"All\",\"Tutorials\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/\",\"name\":\"Version 1.2 Update in Workbooks for .NET - Part I - Xceed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN.png\",\"datePublished\":\"2024-10-17T17:07:57+00:00\",\"dateModified\":\"2025-08-04T13:55:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/#primaryimage\",\"url\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN.png\",\"contentUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN.png\",\"width\":393,\"height\":392},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-i\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Version 1.2 Update in Workbooks for .NET &#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":"Actualizaci\u00f3n de la versi\u00f3n 1.2 en Workbooks for .NET - 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\/version-1-2-actualizacion-en-libros-de-trabajo-para-net-parte-i\/","og_locale":"es_MX","og_type":"article","og_title":"Version 1.2 Update in Workbooks for .NET - Part I - Xceed","og_description":"Version 1.2 of Workbooks for .NET was released recently, and with it comes new things we can do to customize our xlsx documents. We will go over some of them over this and the next few articles.","og_url":"https:\/\/xceed.com\/es\/blog\/tutoriales\/version-1-2-actualizacion-en-libros-de-trabajo-para-net-parte-i\/","og_site_name":"Xceed","article_published_time":"2024-10-17T17:07:57+00:00","article_modified_time":"2025-08-04T13:55:31+00:00","og_image":[{"width":393,"height":392,"url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.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\/version-1-2-update-in-workbooks-for-net-part-i\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Version 1.2 Update in Workbooks for .NET &#8211; Part I","datePublished":"2024-10-17T17:07:57+00:00","dateModified":"2025-08-04T13:55:31+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/"},"wordCount":351,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.png","articleSection":["All","Tutorials"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/","url":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/","name":"Actualizaci\u00f3n de la versi\u00f3n 1.2 en Workbooks for .NET - Parte I - Xceed","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.png","datePublished":"2024-10-17T17:07:57+00:00","dateModified":"2025-08-04T13:55:31+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/#primaryimage","url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.png","contentUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.png","width":393,"height":392},{"@type":"BreadcrumbList","@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-i\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Version 1.2 Update in Workbooks for .NET &#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\/2268","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=2268"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts\/2268\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/media\/2235"}],"wp:attachment":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/media?parent=2268"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/categories?post=2268"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/tags?post=2268"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}