{"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":"utilisation-dhyperliens-dans-les-classeurs-pour-net","status":"publish","type":"post","link":"https:\/\/xceed.com\/fr\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/","title":{"rendered":"Utilisation d'hyperliens dans les classeurs pour .NET"},"content":{"rendered":"<p>En savoir plus sur&nbsp;<a href=\"http:\/\/xceed.com\/en\/our-products\/product\/workbooks-for-net\" target=\"_blank\" rel=\"noreferrer noopener\">Xeed Workbooks pour .NET<\/a><\/p>\n\n\n\n<p>Aujourd'hui, nous allons nous pencher sur l'ajout d'un nouvel \u00e9l\u00e9ment \u00e0 notre document xlsx : Les hyperliens.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Qu'est-ce qu'un lien hypertexte ?<\/h2>\n\n\n\n<p>Un lien hypertexte est un \u00e9l\u00e9ment tel qu'un mot, une phrase ou un objet qui pointe vers un autre emplacement. Lorsque vous cliquez sur un lien, vous acc\u00e9dez \u00e0 la cible de ce lien.<\/p>\n\n\n\n<p>Dans le contexte des classeurs pour .NET, un lien hypertexte est un mot ou une phrase dans une cellule ou une plage de cellules donn\u00e9e.<\/p>\n\n\n\n<p>Le&nbsp;<em>Lien hypertexte<\/em>&nbsp;encapsule l'objet qui repr\u00e9sente un lien hypertexte et poss\u00e8de les propri\u00e9t\u00e9s suivantes :<\/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\">Acc\u00e8s aux hyperliens<\/h2>\n\n\n\n<p>Les liens hypertextes d'un classeur sont accessibles par le biais de la fonction&nbsp;<em>Collection de liens hypertextes<\/em>&nbsp;sur un&nbsp;<em>Feuille de travail<\/em>.<\/p>\n\n\n\n<p>Le&nbsp;<em>Collection de liens hypertextes<\/em>&nbsp;contient tous les hyperliens de la feuille de calcul. Elle permet \u00e9galement \u00e0 l'utilisateur d'ajouter de nouveaux hyperliens et de les manipuler.<\/p>\n\n\n\n<p>Le&nbsp;<em>Collection de liens hypertextes<\/em>&nbsp;poss\u00e8de les propri\u00e9t\u00e9s suivantes :<\/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\">Ajout d'hyperliens \u00e0 une feuille de calcul<\/h2>\n\n\n\n<p>Pour ajouter des hyperliens \u00e0 une feuille de calcul, nous utilisons la fonction&nbsp;<em>Ajouter<\/em>&nbsp;disponible sur le site&nbsp;<em>Collection d'hyperliens<\/em>&nbsp;classe.<\/p>\n\n\n\n<p>Le&nbsp;<em>Ajouter<\/em>&nbsp;offre 3 surcharges, la diff\u00e9rence entre elles \u00e9tant la mani\u00e8re dont l'emplacement du lien hypertexte dans la feuille de calcul est sp\u00e9cifi\u00e9.<\/p>\n\n\n\n<p>Option de surcharge 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>Option de surcharge 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>Option de surcharge 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>Pour plus d'informations, veuillez vous r\u00e9f\u00e9rer \u00e0 la&nbsp;<a href=\"https:\/\/doc.xceed.com\/xceed-workbooks-for-net\/webframe.html#topic1.html\" target=\"_blank\" rel=\"noreferrer noopener\">la documentation<\/a>.<\/p>\n\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>Dans le contexte des classeurs pour .NET, un lien hypertexte sera un mot ou une phrase dans une cellule ou une plage de cellules donn\u00e9e. La classe Hyperlink encapsule l'objet qui repr\u00e9sente un hyperlien<\/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\/fr\/blog\/tutoriels\/utilisation-dhyperliens-dans-les-classeurs-pour-net\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\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\/fr\/blog\/tutoriels\/utilisation-dhyperliens-dans-les-classeurs-pour-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 minutes\" \/>\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\":\"fr-CA\",\"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\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-hyperlinks-in-workbooks-for-net\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@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\":\"fr-CA\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\",\"name\":\"Xceed\",\"url\":\"https:\\\/\\\/xceed.com\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@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\":\"fr-CA\",\"@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\\\/fr\\\/blog\\\/author\\\/jreijaxceed-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Utilisation des hyperliens dans les classeurs pour .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\/fr\/blog\/tutoriels\/utilisation-dhyperliens-dans-les-classeurs-pour-net\/","og_locale":"fr_CA","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\/fr\/blog\/tutoriels\/utilisation-dhyperliens-dans-les-classeurs-pour-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 minutes"},"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":"fr-CA","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":"Utilisation des hyperliens dans les classeurs pour .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":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/using-hyperlinks-in-workbooks-for-net\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@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":"Fournit des outils aux d\u00e9veloppeurs .NET, Windows Forms, WPF, Silverlight et ASP.NET pour cr\u00e9er de meilleures 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":"fr-CA"},{"@type":"Organization","@id":"https:\/\/xceed.com\/fr\/#organization","name":"Xceed","url":"https:\/\/xceed.com\/fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@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":"fr-CA","@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\/fr\/blog\/author\/jreijaxceed-com\/"}]}},"_links":{"self":[{"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts\/2267","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/comments?post=2267"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts\/2267\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/media\/2235"}],"wp:attachment":[{"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/media?parent=2267"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/categories?post=2267"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/tags?post=2267"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}