{"id":2267,"date":"2024-10-17T17:06:33","date_gmt":"2024-10-17T17:06:33","guid":{"rendered":"http:\/\/localhost:10003\/?p=2267"},"modified":"2025-08-04T13:55:31","modified_gmt":"2025-08-04T13:55:31","slug":"uso-de-hipervinculos-en-libros-de-trabajo-para-net","status":"publish","type":"post","link":"https:\/\/xceed.com\/es\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/","title":{"rendered":"Uso de hiperv\u00ednculos en libros de trabajo 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>Hoy veremos c\u00f3mo a\u00f1adir otro nuevo elemento a nuestro documento xlsx: Los hiperv\u00ednculos.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u00bfQu\u00e9 es un hiperenlace?<\/h2>\n\n\n\n<p>Un hiperv\u00ednculo es un elemento como una palabra, frase u objeto que apunta a otro lugar. Al hacer clic en un enlace, se le llevar\u00e1 al destino de ese enlace.<\/p>\n\n\n\n<p>En el contexto de Workbooks para .NET, un hiperv\u00ednculo ser\u00e1 una palabra o frase en una celda o rango de celdas determinado<\/p>\n\n\n\n<p>En&nbsp;<em>Hiperenlace<\/em>&nbsp;encapsula el objeto que representa un hiperv\u00ednculo, tiene las siguientes propiedades:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">CellRange: the range of cells where the hyperlink is applied.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">DestinationAddress: the destination address of the hyperlink.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">TextToDisplay: the text that should be displayed if the existing text is to be replaced. The default value will be the DestinationAddress if no value is provided when the item is created.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Tooltip: the text that will be displayed when the user mouses over the hyperlink\u2019s cells range.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Type: the hyperlink's type, supported values are:<\/code>\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">Email: the hyperlink refers to an email address.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">ExternalFile: The hyperlink refers to an external document.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Internal: The hyperlink refers to a Cell in the current Worksheet or from another Worksheet of the Workbook.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">WebSite: The hyperlink refers to a website.<\/code><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Acceso a hiperv\u00ednculos<\/h2>\n\n\n\n<p>Se accede a los hiperv\u00ednculos de un Libro de Trabajo a trav\u00e9s de la funci\u00f3n&nbsp;<em>Colecci\u00f3nHiperenlace<\/em>&nbsp;en un determinado&nbsp;<em>Hoja de trabajo<\/em>.<\/p>\n\n\n\n<p>En&nbsp;<em>Colecci\u00f3nHiperenlace<\/em>&nbsp;contiene todos los hiperv\u00ednculos de la hoja de c\u00e1lculo. Tambi\u00e9n permitir\u00e1 al usuario a\u00f1adir nuevos hiperv\u00ednculos y manipularlos.<\/p>\n\n\n\n<p>En&nbsp;<em>Colecci\u00f3nHiperenlace<\/em>&nbsp;tiene las siguientes propiedades:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">Count: returns the number of Hyperlinks in this collection.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Item: returns the designated Hyperlink.<\/code><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">A\u00f1adir hiperv\u00ednculos a una hoja de c\u00e1lculo<\/h2>\n\n\n\n<p>Para a\u00f1adir hiperv\u00ednculos a una hoja de c\u00e1lculo, utilizamos la funci\u00f3n&nbsp;<em>A\u00f1adir<\/em>&nbsp;disponible en el&nbsp;<em>HiperenlacesColecci\u00f3n<\/em>&nbsp;clase.<\/p>\n\n\n\n<p>En&nbsp;<em>A\u00f1adir<\/em>&nbsp;ofrece 3 sobrecargas, la diferencia entre ellas es c\u00f3mo se especifica la ubicaci\u00f3n del hiperv\u00ednculo en la hoja de c\u00e1lculo.<\/p>\n\n\n\n<p>Opci\u00f3n de sobrecarga 1<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">destinationLocation: the destination location of the hyperlink (a CellAddress from the current worksheet or from another worksheet, an external document, a website or an email address).<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">cellAdress: the address for the hyperlink's location in the worksheet.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">hyperlinkRowLength: specifies on how many vertical cells the hyperlink be active (1 by default).<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">hyperlinkColumnLength: specifies on how many horizontal cells the hyperlink be active. (1 by default).<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">textToDisplay: the cell's text, if it is different from the existing one (null by default).<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">tooltip: the tooltip text that will be displayed on mouse over.<\/code><\/li>\n<\/ul>\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\n\t\/\/ Format\n\t\/\/ worksheet.Hyperlinks.Add( destinationLocation, cellAddress, hperlinkRowLength, hyperlinkColumnLength, textToDisplay, tooltip );\n\n\t\/\/ Hyperlink Type: Internal (same worksheet)\n\tworksheet.Cells&#91; \"B2\" ].Value = \"Add an hyperlink to a cell reference in same worksheet:\";\n\tworksheet.Hyperlinks.Add( \"Z1\", \"B3\", 1, 1, \"Link to another cell.\", \"A cell reference.\" );\n\n\t\/\/ Hyperlink Type: Internal (other worksheet)\n\tworksheet.Cells&#91; \"B5\" ].Value = \"Add an hyperlink to a cell reference in another worksheet:\";\n\tworksheet.Hyperlinks.Add( \"Sheet2!B1\", \"B6\", 1, 2, \"Link to another worksheet's cell.\", \"Another worksheet cell reference.\" );\n\n\t\/\/ Hyperlink Type: ExternalFile\n\tworksheet.Cells&#91; \"B8\" ].Value = \"Add an hyperlink to an external document:\";\n\tworksheet.Hyperlinks.Add( \"..\/abc.xlsx\", \"B9\", 2, 3, \"Link to another document.\", \"An external document link.\" );\n\n\t\/\/ Hyperlink Type: Email\n\tworksheet.Cells&#91; \"B12\" ].Value = \"Add an hyperlink to an email address:\";\n\tworksheet.Hyperlinks.Add( \"sales@xceed.com\", \"B13\", 3, 2, null, \"An email link.\" );\n\n\t\/\/ Hyperlink Type: Website\n\tworksheet.Cells&#91; \"B17\" ].Value = \"Add an hyperlink to a web site:\";\n\tworksheet.Hyperlinks.Add( \"www.xceed.com\", \"B18\", 1, 2, \"Xceed\", \"A web site link.\" );\n}\n<\/code><\/pre>\n\n\n\n<p>Opci\u00f3n de sobrecarga 2<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">destinationLocation: the destination location of the hyperlink (a CellAddress from the current worksheet or from another worksheet, an external document, a website or an email address).<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">topLeftRowId: the Id of the row where the hyperlink is located in the worksheet.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">topLeffColumnId: the Id of the column where the hyperlink is located in the worksheet.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">hyperlinkRowLength: specifies on how many vertical cells the hyperlink be active (1 by default).<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">hyperlinkColumnLength: specifies on how many horizontal cells the hyperlink be active. (1 by default).<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">textToDisplay: the cell's text, if it is different from the existing one (null by default).<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">tooltip: the tooltip text that will be displayed on mouse over.<\/code><\/li>\n<\/ul>\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\n\t\/\/ Format\n\t\/\/ worksheet.Hyperlinks.Add( destinationLocation, topLeftRowId, topLeftColumnId, hperlinkRowLength, hyperlinkColumnLength, textToDisplay, tooltip );\n\n\t\/\/ Hyperlink Type: Internal (same worksheet)\n\tworksheet.Cells&#91; \"B2\" ].Value = \"Add an hyperlink to a cell reference in same worksheet:\";\n\tworksheet.Hyperlinks.Add( \"Z1\", 2, 1, 1, 1, \"Link to another cell.\", \"A cell reference.\" );\n\n\t\/\/ Hyperlink Type: Internal (other worksheet)\n\tworksheet.Cells&#91; \"B5\" ].Value = \"Add an hyperlink to a cell reference in another worksheet:\";\n\tworksheet.Hyperlinks.Add( \"Sheet2!B1\", 5, 1, 1, 2, \"Link to another worksheet's cell.\", \"Another worksheet cell reference.\" );\n\n\t\/\/ Hyperlink Type: ExternalFile\n\tworksheet.Cells&#91; \"B8\" ].Value = \"Add an hyperlink to an external document:\";\n\tworksheet.Hyperlinks.Add( \"..\/abc.xlsx\", 8, 1, 2, 3, \"Link to another document.\", \"An external document link.\" );\n\n\t\/\/ Hyperlink Type: Email\n\tworksheet.Cells&#91; \"B12\" ].Value = \"Add an hyperlink to an email address:\";\n\tworksheet.Hyperlinks.Add( \"sales@xceed.com\", 12, 1, 3, 2, null, \"An email link.\" );\n\n\t\/\/ Hyperlink Type: Website\n\tworksheet.Cells&#91; \"B12\" ].Value = \"Add an hyperlink to an email address:\";\n\tworksheet.Hyperlinks.Add( \"www.xceed.com\", 17, 1, 1, 2, \"Xceed\", \"A web site link.\" );\n}\n<\/code><\/pre>\n\n\n\n<p>Opci\u00f3n de sobrecarga 3<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">destinationLocation: the destination location of the hyperlink (a CellAddress from the current worksheet or from another worksheet, an external document, a website or an email address).<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">topLeftCellAddress: the top left cell address for the location of the hyperlink in the worksheet.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">bottomRightCellAddress: the bottom right cell address for the location of the hyperlink in the worksheet.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">textToDisplay: the cell's text, if it is different from the existing one (null by default).<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">tooltip: the tooltip text that will be displayed on mouse over.<\/code><\/li>\n<\/ul>\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\n\t\/\/ Format\n\t\/\/ worksheet.Hyperlinks.Add( destinationLocation, topLeftCellAddress, bottomRightCellAddress, textToDisplay, tooltip );\n\n\t\/\/ Hyperlink Type: Internal (same worksheet)\n\tworksheet.Cells&#91; \"B2\" ].Value = \"Add an hyperlink to a cell reference in same worksheet:\";\n\tworksheet.Hyperlinks.Add( \"Z1\", \"B3\", \"B3\", \"Link to another cell.\", \"A cell reference.\" );\n\n\t\/\/ Hyperlink Type: Internal (other worksheet)\n\tworksheet.Cells&#91; \"B5\" ].Value = \"Add an hyperlink to a cell reference in another worksheet:\";\n\tworksheet.Hyperlinks.Add( \"Sheet2!B1\", \"B6\", \"C6\", \"Link to another worksheet's cell.\", \"Another worksheet cell reference.\" );\n\n\t\/\/ Hyperlink Type: ExternalFile\n\tworksheet.Cells&#91; \"B8\" ].Value = \"Add an hyperlink to an external document:\";\n\tworksheet.Hyperlinks.Add( \"..\/abc.xlsx\", \"B9\", \"D10\", \"Link to another document.\", \"An external document link.\" );\n\n\t\/\/ Hyperlink Type: Email\n\tworksheet.Cells&#91; \"B12\" ].Value = \"Add an hyperlink to an email address:\";\n\tworksheet.Hyperlinks.Add( \"sales@xceed.com\", \"B13\", \"C15\", null, \"An email link.\" );\n\n\t\/\/ Hyperlink Type: Website\n\tworksheet.Cells&#91; \"B12\" ].Value = \"Add an hyperlink to an email address:\";\n\tworksheet.Hyperlinks.Add( \"www.xceed.com\", \"B18\", \"C18\", \"Xceed\", \"A web site link.\" );\n}\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>\n\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>En el contexto de Workbooks para .NET, un hiperv\u00ednculo ser\u00e1 una palabra o frase en una celda o rango de celdas determinado. La clase Hiperenlace encapsula el objeto que representa un hiperenlace<\/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-2267","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>Using Hyperlinks 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-hipervinculos-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 Hyperlinks in Workbooks for .NET - Xceed\" \/>\n<meta property=\"og:description\" content=\"In the context of Workbooks for .NET, a hyperlink will be a word or sentence in a given cell or range of cells. The\u00a0Hyperlink\u00a0class encapsulates the object that represents a hyperlink\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/es\/blog\/tutoriales\/uso-de-hipervinculos-en-libros-de-trabajo-para-net\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T17:06:33+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=\"6 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-hyperlinks-in-workbooks-for-net\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-hyperlinks-in-workbooks-for-net\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Using Hyperlinks in Workbooks for .NET\",\"datePublished\":\"2024-10-17T17:06:33+00:00\",\"dateModified\":\"2025-08-04T13:55:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-hyperlinks-in-workbooks-for-net\\\/\"},\"wordCount\":219,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-hyperlinks-in-workbooks-for-net\\\/#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\\\/using-hyperlinks-in-workbooks-for-net\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-hyperlinks-in-workbooks-for-net\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-hyperlinks-in-workbooks-for-net\\\/\",\"name\":\"Using Hyperlinks in Workbooks for .NET - Xceed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-hyperlinks-in-workbooks-for-net\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-hyperlinks-in-workbooks-for-net\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN.png\",\"datePublished\":\"2024-10-17T17:06:33+00:00\",\"dateModified\":\"2025-08-04T13:55:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-hyperlinks-in-workbooks-for-net\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-hyperlinks-in-workbooks-for-net\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-hyperlinks-in-workbooks-for-net\\\/#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\\\/using-hyperlinks-in-workbooks-for-net\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Hyperlinks 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 hiperv\u00ednculos en libros de trabajo 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-hipervinculos-en-libros-de-trabajo-para-net\/","og_locale":"es_MX","og_type":"article","og_title":"Using Hyperlinks in Workbooks for .NET - Xceed","og_description":"In the context of Workbooks for .NET, a hyperlink will be a word or sentence in a given cell or range of cells. The\u00a0Hyperlink\u00a0class encapsulates the object that represents a hyperlink","og_url":"https:\/\/xceed.com\/es\/blog\/tutoriales\/uso-de-hipervinculos-en-libros-de-trabajo-para-net\/","og_site_name":"Xceed","article_published_time":"2024-10-17T17:06:33+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":"6 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xceed.com\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Using Hyperlinks in Workbooks for .NET","datePublished":"2024-10-17T17:06:33+00:00","dateModified":"2025-08-04T13:55:31+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/"},"wordCount":219,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/#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\/using-hyperlinks-in-workbooks-for-net\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/","url":"https:\/\/xceed.com\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/","name":"Uso de hiperv\u00ednculos en libros de trabajo para .NET - Xceed","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.png","datePublished":"2024-10-17T17:06:33+00:00","dateModified":"2025-08-04T13:55:31+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/xceed.com\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/#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\/using-hyperlinks-in-workbooks-for-net\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Using Hyperlinks 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\/2267","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=2267"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts\/2267\/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=2267"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/categories?post=2267"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/tags?post=2267"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}