{"id":2265,"date":"2024-10-17T16:56:13","date_gmt":"2024-10-17T16:56:13","guid":{"rendered":"http:\/\/localhost:10003\/?p=2265"},"modified":"2025-08-04T13:55:31","modified_gmt":"2025-08-04T13:55:31","slug":"uso-de-estilos-y-vistas-de-hoja-en-libros-de-trabajo-para-net","status":"publish","type":"post","link":"https:\/\/xceed.com\/es\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/","title":{"rendered":"Uso de Estilos y SheetViews en Workbooks para .NET"},"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>Ahora que hemos cubierto los conceptos b\u00e1sicos de la creaci\u00f3n de un documento xlsx, y aprendido a a\u00f1adir y modificar el contenido de un&nbsp;<em>Hoja de trabajo<\/em>&nbsp;incluyendo&nbsp;<em>C\u00e9lulas<\/em>&nbsp;y&nbsp;<em>Tablas<\/em>Vamos a ver c\u00f3mo hacer que se vea bien aprovechando los Estilos y las SheetViews.<\/p>\n\n\n\n<p><code data-no-translation=\"\">Note:<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">At the time of this writing, more options have been added to the Style and SheetView classes and will be included in a future release of Xceed Workbooks for .NET.<br>We will cover these new options in a part 2 article once they are available.<\/code><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">\u00bfQu\u00e9 es un estilo?<\/h2>\n\n\n\n<p>En pocas palabras, un&nbsp;<em>Estilo<\/em>&nbsp;es un grupo de ajustes para cambiar el aspecto de las celdas, que pueden aplicarse a una celda espec\u00edfica.&nbsp;<em>Celda<\/em>las c\u00e9lulas de un&nbsp;<em>Columna<\/em>o las c\u00e9lulas de un&nbsp;<em>Fila<\/em>.<\/p>\n\n\n\n<p>En concreto, estos ajustes incluyen actualmente:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">Font: the Font to use for the current Style.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Alignment: the horizontal and vertical alignments used to align the content of a cell.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">CustomFormat: the format used to display the content of a Cell (null by default, setting this property will overwrite the PredefinedNumberFormatId property)<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">PredefinedNumberFormatId: the predefined number format with an Id (0 by default, setting this property will overwrite the CustomFormat property)<\/code><\/li>\n<\/ul>\n\n\n\n<p>Aprovechar los Estilos es una gran manera de tener un formato consistente en sus Libros de Trabajo y Hojas de C\u00e1lculo.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Aplicar un estilo<\/h2>\n\n\n\n<p>Se puede especificar un Estilo en un&nbsp;<em>Celda<\/em>c\u00e9lulas de un&nbsp;<em>Columna<\/em>o c\u00e9lulas de un&nbsp;<em>Fila<\/em>.<\/p>\n\n\n\n<p>Sin embargo, esto nos lleva a la siguiente pregunta: \u00bfqu\u00e9 pasa si tenemos una Celda afectada por m\u00e1s de un Estilo? Por ejemplo, tenemos un Estilo en la Columna B y tambi\u00e9n un Estilo en la 5ta Fila, en esta situaci\u00f3n \u00bfqu\u00e9 Estilo se usar\u00eda para la Celda en \"B5\"? La prioridad se determina en el siguiente orden: Celda, Fila, Columna. Esto significa que en nuestro ejemplo, si no hay un Estilo aplicado directamente a la Celda en \"B5\", se usar\u00eda el de la Fila.<\/p>\n\n\n\n<p>En los ejemplos siguientes se parte de la siguiente disposici\u00f3n inicial del c\u00f3digo:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">using( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar worksheet = document.Worksheets&#91; 0 ];\n\t\t\n\t\/\/ Styling a specific Cell using its address\n\tworksheet.Cells&#91; \"B2\" ].Style. &#91;...]\n\n\t\/\/ Styling a specific Cell using its row and column index\n\tworksheet.Cells&#91; 1, 1 ].Style. &#91;...]\n\n\t\/\/ Styling the Cells of a Column\n\tworksheet.Columns&#91; 2 ].Style. &#91;...]\n\n\t\/\/ Styling the Cells of a Row\n\tworksheet.Rows&#91; 3 ].Style. &#91;...]\n\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<p>Fuente (propiedades disponibles)&nbsp;<a href=\"https:\/\/doc.xceed.com\/xceed-workbooks-for-net\/webframe.html#topic138.html\" target=\"_blank\" rel=\"noreferrer noopener\">aqu\u00ed<\/a>)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Specific Cell\nworksheet.Cells&#91; \"B1\" ].Style.Font = new Font() { Bold = true, Size = 15.5d };\n\n\/\/ Column\nworksheet.Columns&#91; 2 ].Style.Font = new Font() { Name = \"Lucida Fax\", Italic = true, Underline = true, UnderlineType = UnderlineType.Double };\n\n\/\/ Row\nworksheet.Rows&#91; 3 ].Style.Font = new Font() { Strikethrough = true, Size = 18d };\n<\/code><\/pre>\n\n\n\n<p>Alineaci\u00f3n (valores disponibles para&nbsp;<a href=\"https:\/\/doc.xceed.com\/xceed-workbooks-for-net\/webframe.html#topic15.html\" target=\"_blank\" rel=\"noreferrer noopener\">HorizontalAlignment<\/a>&nbsp;y&nbsp;<a href=\"https:\/\/doc.xceed.com\/xceed-workbooks-for-net\/webframe.html#topic21.html\" target=\"_blank\" rel=\"noreferrer noopener\">Alineaci\u00f3nVertical<\/a>)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Specific Cell\nworksheet.Cells&#91; \"B1\" ].Style.Alignment.Horizontal = HorizontalAlignment.Center;\nworksheet.Cells&#91; \"B1\" ].Style.Alignment.Vertical = VerticalAlignment.Center;\n\n\/\/ Column\nworksheet.Columns&#91; 2 ].Style.Alignment = new Alignment( HorizontalAlignment.Justify, VerticalAlignment.Center);\n\n\/\/ Row\nworksheet.Rows&#91; 3 ].Style.Alignment.Horizontal = HorizontalAlignment.CenterAcrossSelection;\n<\/code><\/pre>\n\n\n\n<p>Formato personalizado<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Cell B2 contains 25.6 displayed as \"$25.6000\"\nworksheet.Cells&#91; 1, 1 ].Value = 25.6;\nworksheet.Cells&#91; 1, 1 ].Style.CustomFormat = \"$0.0000\";\n\n\/\/ Cell C3 contains a date formatted to display as \"10:22 AM\"\nworksheet.Cells&#91; 2, 2 ].Value = new DateTime( 2021, 7, 1, 10, 22, 33 );\nworksheet.Cells&#91; 2, 2 ].Style.CustomFormat = \"h:mm AM\/PM\";\n\n\/\/ Column\nworksheet.Columns&#91; 2 ].Style.CustomFormat = \"h:mm AM\/PM\";\n\n\/\/ Row\nworksheet.Rows&#91; 3 ].Style.CustomFormat = \"$0.0000\";\n<\/code><\/pre>\n\n\n\n<p>PredefinedNumberFormatId (valores disponibles&nbsp;<a href=\"https:\/\/doc.xceed.com\/xceed-workbooks-for-net\/webframe.html#topic301.html\" target=\"_blank\" rel=\"noreferrer noopener\">aqu\u00ed<\/a>)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Cell D4 contains 33.5 set to format \"0.00\" to display the value as \"33.50\"\nworksheet.Cells&#91; \"D4\" ].Value = 33.5;\nworksheet.Cells&#91; \"D4\" ].Style.PredefinedNumberFormatId = 2;\n\n\/\/ Column with dates formatted as mm-dd-yy\nworksheet.Columns&#91; 2 ].Style.PredefinedNumberFormatId = 14;\n\n\/\/ Row with time formatted as &#91;h]:mm:ss\nworksheet.Rows&#91; 3 ].Style.PredefinedNumberFormatId = 46;\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\u00bfQu\u00e9 es una SheetView?<\/h2>\n\n\n\n<p>Una SheetView es una forma de permitir la creaci\u00f3n de vistas personalizadas en un&nbsp;<em>Hoja de trabajo<\/em>.<\/p>\n\n\n\n<p>La clase SheetView representa una vista de hoja \u00fanica de un&nbsp;<em>Hoja de trabajo<\/em>.<\/p>\n\n\n\n<p><code data-no-translation=\"\">Note:<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">At the time of writing, only one SheetView per Worksheet is supported.<\/code><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Uso de una SheetView<\/h2>\n\n\n\n<p>La clase SheetView actualmente soporta las siguientes propiedades:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">ActiveCellAddress: the active Cell in the Worksheet, which is the one with focus.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">TopLeftCellAddress: the Cell to be displayed as the top left position in the Worksheet view.<\/code><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Setting a SheetView\n\tusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n\t{\n\t\tvar worksheet = doc.Worksheets&#91; 0 ];        \n\t\tworksheet.SheetView.ActiveCellAddress = \"C2\";\n\t\tworksheet.SheetView.TopLeftCellAddress = \"B1\";\n\t\tdocument.Save();\n\t}\n<\/code><\/pre>\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>Ahora que hemos cubierto los conceptos b\u00e1sicos de la creaci\u00f3n de un documento xlsx, y aprendido a a\u00f1adir y modificar el contenido de una hoja de c\u00e1lculo incluyendo celdas y tablas, vamos a ver c\u00f3mo hacer que se vea bien, aprovechando los estilos y SheetViews.<\/p>","protected":false},"author":2,"featured_media":2236,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[141,60],"tags":[],"class_list":["post-2265","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.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using Styles and SheetViews in Workbooks for .NET - 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\/uso-de-estilos-y-vistas-de-hoja-en-libros-de-trabajo-para-net\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Styles and SheetViews in Workbooks for .NET - Xceed\" \/>\n<meta property=\"og:description\" content=\"Now that we have covered the basics of creating an xlsx document, and learned how to add to and modify the contents of a\u00a0Worksheet\u00a0including\u00a0Cells\u00a0and\u00a0Tables, let&#039;s look into how to make it look nice by taking advantage of Styles and SheetViews!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/es\/blog\/tutoriales\/uso-de-estilos-y-vistas-de-hoja-en-libros-de-trabajo-para-net\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T16:56:13+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-1.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\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Using Styles and SheetViews in Workbooks for .NET\",\"datePublished\":\"2024-10-17T16:56:13+00:00\",\"dateModified\":\"2025-08-04T13:55:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/\"},\"wordCount\":328,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN-1.png\",\"articleSection\":[\"All\",\"Tutorials\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/\",\"name\":\"Using Styles and SheetViews in Workbooks for .NET - Xceed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN-1.png\",\"datePublished\":\"2024-10-17T16:56:13+00:00\",\"dateModified\":\"2025-08-04T13:55:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/#primaryimage\",\"url\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN-1.png\",\"contentUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN-1.png\",\"width\":393,\"height\":392},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-styles-and-sheetviews-in-workbooks-for-net\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Styles and SheetViews in Workbooks for .NET\"}]},{\"@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":"Uso de Estilos y SheetViews en Workbooks para .NET - 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\/uso-de-estilos-y-vistas-de-hoja-en-libros-de-trabajo-para-net\/","og_locale":"es_MX","og_type":"article","og_title":"Using Styles and SheetViews in Workbooks for .NET - Xceed","og_description":"Now that we have covered the basics of creating an xlsx document, and learned how to add to and modify the contents of a\u00a0Worksheet\u00a0including\u00a0Cells\u00a0and\u00a0Tables, let's look into how to make it look nice by taking advantage of Styles and SheetViews!","og_url":"https:\/\/xceed.com\/es\/blog\/tutoriales\/uso-de-estilos-y-vistas-de-hoja-en-libros-de-trabajo-para-net\/","og_site_name":"Xceed","article_published_time":"2024-10-17T16:56:13+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-1.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\/using-styles-and-sheetviews-in-workbooks-for-net\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Using Styles and SheetViews in Workbooks for .NET","datePublished":"2024-10-17T16:56:13+00:00","dateModified":"2025-08-04T13:55:31+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/"},"wordCount":328,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png","articleSection":["All","Tutorials"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xceed.com\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/","url":"https:\/\/xceed.com\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/","name":"Uso de Estilos y SheetViews en Workbooks para .NET - Xceed","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png","datePublished":"2024-10-17T16:56:13+00:00","dateModified":"2025-08-04T13:55:31+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/xceed.com\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/#primaryimage","url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png","contentUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png","width":393,"height":392},{"@type":"BreadcrumbList","@id":"https:\/\/xceed.com\/blog\/tutorials\/using-styles-and-sheetviews-in-workbooks-for-net\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Using Styles and SheetViews in Workbooks for .NET"}]},{"@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\/2265","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=2265"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts\/2265\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/media\/2236"}],"wp:attachment":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/media?parent=2265"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/categories?post=2265"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/tags?post=2265"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}