{"id":2266,"date":"2024-10-17T17:02:00","date_gmt":"2024-10-17T17:02:00","guid":{"rendered":"http:\/\/localhost:10003\/?p=2266"},"modified":"2025-08-04T13:55:31","modified_gmt":"2025-08-04T13:55:31","slug":"utilisation-dimages-dans-les-cahiers-dexercices-pour-le-net","status":"publish","type":"post","link":"https:\/\/xceed.com\/fr\/blog\/tutorials\/using-pictures-in-workbooks-for-net\/","title":{"rendered":"Utilisation d'images 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>Maintenant que nous connaissons les bases de la cr\u00e9ation et de l'\u00e9dition de notre classeur, y compris l'utilisation de la fonction&nbsp;<em>Tableaux<\/em>,&nbsp;<em>Styles<\/em>&nbsp;et&nbsp;<em>Vues de feuilles<\/em>Si l'on ne peut pas se contenter d'un seul \u00e9l\u00e9ment, il convient d'en ajouter un autre : Les images.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Qu'est-ce qu'une image ?<\/h2>\n\n\n\n<p>A&nbsp;<em>Photo<\/em>&nbsp;repr\u00e9sente un \u00e9l\u00e9ment d'image dans le classeur, il est \u00e9galement appel\u00e9 \u00e9l\u00e9ment de dessin.<\/p>\n\n\n\n<p>La classe Picture poss\u00e8de les propri\u00e9t\u00e9s suivantes :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">Description: the description of the picture.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">DrawingClientData: the information of the ClientData, which is how the picture should behave when the worksheet is protected or printed.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">PictureLocks: the information of the PictureLocks, which are the manipulations allowed on the picture.<\/code><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Acc\u00e8s aux images<\/h2>\n\n\n\n<p>Les images d'un cahier de travail sont accessibles par l'interm\u00e9diaire de la fonction&nbsp;<em>Collection d'images<\/em>&nbsp;sur un&nbsp;<em>Feuille de travail<\/em>. La classe PictureCollection contiendra toutes les images de la feuille de travail et permettra \u00e9galement \u00e0 l'utilisateur d'ajouter de nouvelles images et de les manipuler.<\/p>\n\n\n\n<p>La classe PictureCollection 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 Pictures in the current Worksheet.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Item: returns the Picture located at the specified index.<\/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\tvar pictureQty = worksheet.Pictures.Count;\n\tvar firstPicture = worksheet.Pictures&#91; 0 ];\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Ajouter des images \u00e0 une feuille de calcul<\/h2>\n\n\n\n<p>Pour ajouter des images \u00e0 une feuille de travail, nous utilisons la fonction&nbsp;<em>Ajouter<\/em>&nbsp;disponible dans la classe PictureCollection.<\/p>\n\n\n\n<p>La m\u00e9thode Add offre plusieurs surcharges, ce qui permet une certaine souplesse dans le type d'image \u00e0 ajouter et dans son emplacement.<\/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=\"\">For the overloads that have a scale parameter, the value must be 1 or greater (100 by default).<\/code><\/li>\n<\/ul>\n\n\n\n<p>Ajouter des images \u00e0 une feuille de travail :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">using( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar srcFile = PictureSampleResourcesDirectory + @\"balloon.jpg\";\n\tvar srcStream = new FileStream( PictureSampleResourcesDirectory + @\"balloon.jpg\", FileMode.Open, FileAccess.Read );\n\n\tvar worksheet = document.Worksheets&#91; 0 ];\n\n\t\/\/ Overload 1: filename and scale\n\tvar pic1 = worksheet.Pictures.Add( srcFile, 50 );\n\n\t\/\/ Overload 2: stream and scale\n\tvar pic2 = worksheet.Pictures.Add( srcStream, 50 );\n\n\t\/\/ Overload 3: filename, top left position (coordinates), scale\n\tvar pic3 = worksheet.Pictures.Add( srcFile, 14, 0, 50 );\n\n\t\/\/ Overload 4: stream, top left position (coordinates), scale\n\tvar pic4 = worksheet.Pictures.Add( srcStream, 14, 0, 50 );\n\n\t\/\/ Overload 5: filename, top left position (address), scale\n\tvar pic5 = worksheet.Pictures.Add( srcFile, \"A4\", 50 );\n\n\t\/\/ Overload 6: stream, top left position (address), scale\n\tvar pic6 = worksheet.Pictures.Add( srcStream, \"A4\", 50 );\n\n\t\/\/ Overload 7: filename, top left and bottom right positions (coordinates)\n\tvar pic7 = worksheet.Pictures.Add( srcFile, 14, 0, 30, 15 );\n\n\t\/\/ Overload 8: stream, top left and bottom right positions (coordinates)\n\tvar pic8 = worksheet.Pictures.Add( srcStream, 14, 0, 30, 15 );\n\n\t\/\/ Overload 9: filename, top left and bottom right positions (addresses)\n\tvar pic9 = worksheet.Pictures.Add( srcFile, \"A4\", \"E12\");\n\n\t\/\/ Overload 10: stream, top left and bottom right positions (addresses)\n\tvar pic10 = worksheet.Pictures.Add( srcStream, \"A4\", \"E12\" );\n\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">D\u00e9finir des restrictions sur une image<\/h2>\n\n\n\n<p>Le&nbsp;<em>Verrous d'image<\/em>&nbsp;permet de supprimer l'autorisation de modifier certaines propri\u00e9t\u00e9s de l'image dans Microsoft Excel. Par d\u00e9faut, toutes les valeurs sont fix\u00e9es \u00e0 false.<\/p>\n\n\n\n<p>Param\u00e8tres disponibles (r\u00e9glez-les sur \"vrai\" pour appliquer le comportement correspondant) :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">NoAdjustHandles: removes the authorization to use the adjust handles.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">NoChangeArrowheads: removes the authorization to change Arrowheads.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">NoChangeAspect: removes the authorization to change the ratio.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">NoChangeShapeType: removes the authorization to change the connection shape.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">NoCrop: removes the authorization to crop the picture.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">NoEditPoints: removes the authorization to edit the connection shape point.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">NoGrp: removes the authorization to group shapes.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">NoMove: removes the authorization to move the picture.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">NoRot: removes the authorization to rotate the picture.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">NoSelect: removes the authorization to select the picture.<\/code><\/li>\n<\/ul>\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>","protected":false},"excerpt":{"rendered":"<p>Maintenant que nous connaissons les bases de la cr\u00e9ation et de l'\u00e9dition de notre classeur, y compris l'utilisation des tableaux, des styles et des SheetViews, nous allons nous pencher sur l'ajout d'un nouvel \u00e9l\u00e9ment : Les images<\/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-2266","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 Pictures 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-dimages-dans-les-cahiers-dexercices-pour-le-net\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Pictures in Workbooks for .NET - Xceed\" \/>\n<meta property=\"og:description\" content=\"Now that we know the basics to making and editing our Workbook, including the use of\u00a0Tables,\u00a0Styles\u00a0and\u00a0SheetViews, let&#039;s look into adding a new element: Pictures\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/fr\/blog\/tutoriels\/utilisation-dimages-dans-les-cahiers-dexercices-pour-le-net\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T17:02:00+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=\"3 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-pictures-in-workbooks-for-net\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-pictures-in-workbooks-for-net\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Using Pictures in Workbooks for .NET\",\"datePublished\":\"2024-10-17T17:02:00+00:00\",\"dateModified\":\"2025-08-04T13:55:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-pictures-in-workbooks-for-net\\\/\"},\"wordCount\":231,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-pictures-in-workbooks-for-net\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN-1.png\",\"articleSection\":[\"All\",\"Tutorials\"],\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-pictures-in-workbooks-for-net\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-pictures-in-workbooks-for-net\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-pictures-in-workbooks-for-net\\\/\",\"name\":\"Using Pictures in Workbooks for .NET - Xceed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-pictures-in-workbooks-for-net\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-pictures-in-workbooks-for-net\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN-1.png\",\"datePublished\":\"2024-10-17T17:02:00+00:00\",\"dateModified\":\"2025-08-04T13:55:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-pictures-in-workbooks-for-net\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-pictures-in-workbooks-for-net\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/using-pictures-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-pictures-in-workbooks-for-net\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Pictures 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 d'images 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-dimages-dans-les-cahiers-dexercices-pour-le-net\/","og_locale":"fr_CA","og_type":"article","og_title":"Using Pictures in Workbooks for .NET - Xceed","og_description":"Now that we know the basics to making and editing our Workbook, including the use of\u00a0Tables,\u00a0Styles\u00a0and\u00a0SheetViews, let's look into adding a new element: Pictures","og_url":"https:\/\/xceed.com\/fr\/blog\/tutoriels\/utilisation-dimages-dans-les-cahiers-dexercices-pour-le-net\/","og_site_name":"Xceed","article_published_time":"2024-10-17T17:02:00+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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xceed.com\/blog\/tutorials\/using-pictures-in-workbooks-for-net\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-pictures-in-workbooks-for-net\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Using Pictures in Workbooks for .NET","datePublished":"2024-10-17T17:02:00+00:00","dateModified":"2025-08-04T13:55:31+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-pictures-in-workbooks-for-net\/"},"wordCount":231,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-pictures-in-workbooks-for-net\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png","articleSection":["All","Tutorials"],"inLanguage":"fr-CA","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xceed.com\/blog\/tutorials\/using-pictures-in-workbooks-for-net\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/using-pictures-in-workbooks-for-net\/","url":"https:\/\/xceed.com\/blog\/tutorials\/using-pictures-in-workbooks-for-net\/","name":"Utilisation d'images dans les classeurs pour .NET - Xceed","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-pictures-in-workbooks-for-net\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-pictures-in-workbooks-for-net\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN-1.png","datePublished":"2024-10-17T17:02:00+00:00","dateModified":"2025-08-04T13:55:31+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/using-pictures-in-workbooks-for-net\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/using-pictures-in-workbooks-for-net\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/xceed.com\/blog\/tutorials\/using-pictures-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-pictures-in-workbooks-for-net\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Using Pictures 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\/2266","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=2266"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts\/2266\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/media\/2236"}],"wp:attachment":[{"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/media?parent=2266"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/categories?post=2266"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/tags?post=2266"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}