{"id":2270,"date":"2024-10-17T17:13:53","date_gmt":"2024-10-17T17:13:53","guid":{"rendered":"http:\/\/localhost:10003\/?p=2270"},"modified":"2025-08-04T13:55:30","modified_gmt":"2025-08-04T13:55:30","slug":"version-1-2-update-in-workbooks-for-net-part-iii","status":"publish","type":"post","link":"https:\/\/xceed.com\/fr\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/","title":{"rendered":"Mise \u00e0 jour de la version 1.2 dans les classeurs pour .NET - Partie III"},"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>Nous poursuivons notre tour d'horizon des changements apport\u00e9s par Workbooks for .NET v1.2.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Classe ThemeColor<\/h2>\n\n\n\n<p>A&nbsp;<em>ThemeColor<\/em>&nbsp;a \u00e9t\u00e9 ajout\u00e9e, qui est utilis\u00e9e pour repr\u00e9senter un&nbsp;<em>Th\u00e8me<\/em>La couleur de l'eau est la m\u00eame que celle de l'eau de mer.<\/p>\n\n\n\n<p>La classe ThemeColor poss\u00e8de les propri\u00e9t\u00e9s suivantes :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">Tint: the ThemeColor's tint. Values are from -1 (dark) to +1 (light); 0 by default.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Type: the ThemeColor's type.<\/code><\/li>\n<\/ul>\n\n\n\n<p>Les types disponibles pour ThemeColor sont actuellement les suivants :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">Accent1, Accent2, Accent3, Accent4, Accent5, Accent6<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Background1, Background2<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">FollowedHyperlink, Hyperlink<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Text1, Text2<\/code><\/li>\n<\/ul>\n\n\n\n<p>Remarque : les propri\u00e9t\u00e9s qui couvrent le m\u00eame \u00e9l\u00e9ment s'excluent mutuellement. Par exemple, dans l'\u00e9l\u00e9ment&nbsp;<em>Remplir<\/em>&nbsp;la d\u00e9finition d'une valeur dans la classe&nbsp;<em>Couleur du th\u00e8me d'arri\u00e8re-plan<\/em>&nbsp;fixera&nbsp;<em>Couleur de fond<\/em>&nbsp;\u00e0 null, et vice versa.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Modifier la couleur du th\u00e8me sur la bordure et la police<\/h2>\n\n\n\n<p>A&nbsp;<em>ThemeColor<\/em>&nbsp;a \u00e9t\u00e9 ajout\u00e9e \u00e0 la propri\u00e9t\u00e9&nbsp;<em>Fronti\u00e8re<\/em>&nbsp;et&nbsp;<em>Police<\/em>&nbsp;pour sp\u00e9cifier les couleurs du th\u00e8me. Les classes&nbsp;<em>ThemeColor<\/em>&nbsp;est de type&nbsp;<em>ThemeColor<\/em>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Setting the ThemeColor\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar worksheet = document.Worksheets&#91; 0 ];\n\n\t\/\/ Border\n\tworksheet.Cells&#91; \"B15\", \"C17\" ].Style.Borders&#91; BorderType.Right ].ThemeColor = new ThemeColor( ThemeColorType.Accent1, -0.5d );\n\n\t\/\/ Font\n\tworksheet.Cells&#91; \"C18\" ].Style.Font = new Font() { ThemeColor = new ThemeColor( ThemeColorType.Text2, -0.5d ) };\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Modifier BackgroundThemeColor et PatternThemeColor sur Fill<\/h2>\n\n\n\n<p>Deux nouvelles propri\u00e9t\u00e9s ont \u00e9t\u00e9 ajout\u00e9es au&nbsp;<em>Remplir<\/em>&nbsp;classe :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">BackgroundThemeColor: used for filling the background of a Cell, Row, Column or range; null by default.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">PatternThemeColor: used for filling a Cell, Row, Column or range; null by default. The Cell, Row, Column or range are filled based on the PatternStyle property.<\/code><\/li>\n<\/ul>\n\n\n\n<p>Les deux&nbsp;<em>Couleur du th\u00e8me d'arri\u00e8re-plan<\/em>&nbsp;et&nbsp;<em>MotifThemeColor<\/em>&nbsp;sont de type&nbsp;<em>ThemeColor<\/em>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Setting BackgroundThemeColor and PatternThemeColor\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar worksheet = document.Worksheets&#91; 0 ];\n\n\t\/\/ Fill\n\tworksheet.Cells&#91; \"C12\" ].Style.Fill = new Fill() { PatternStyle = FillPattern.ThinDiagonalCrosshatch, BackgroundThemeColor = new ThemeColor( ThemeColorType.Background1, -0.5d ), PatternThemeColor = new ThemeColor( ThemeColorType.Accent4, -0.5d ) };\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Modifier la couleur du TabThemeColor sur la feuille de calcul<\/h2>\n\n\n\n<p>A&nbsp;<em>Couleur du th\u00e8me de l'onglet<\/em>&nbsp;a \u00e9t\u00e9 ajout\u00e9e \u00e0 la propri\u00e9t\u00e9&nbsp;<em>Feuille de travail<\/em>&nbsp;pour sp\u00e9cifier la couleur du th\u00e8me des onglets de la feuille de calcul ; null par d\u00e9faut. La classe&nbsp;<em>Couleur du th\u00e8me de l'onglet<\/em>&nbsp;est de type&nbsp;<em>ThemeColor<\/em>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Setting the ThemeColor\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar worksheet = document.Worksheets&#91; 0 ];\n\tworksheet.TabThemeColor = new ThemeColor( ThemeColorType.Accent5, -0.5d );\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Modifier les bordures sur le style<\/h2>\n\n\n\n<p>A&nbsp;<em>Fronti\u00e8res<\/em>&nbsp;a \u00e9t\u00e9 ajout\u00e9e \u00e0 la propri\u00e9t\u00e9&nbsp;<em>Style<\/em>&nbsp;pour personnaliser l'aspect des bordures. La classe&nbsp;<em>Fronti\u00e8res<\/em>&nbsp;est un&nbsp;<em>Collection de fronti\u00e8res<\/em>&nbsp;objet de type.<\/p>\n\n\n\n<p>La classe BorderCollection poss\u00e8de les m\u00e9thodes suivantes :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">SetDiagonals: Sets the DiagonalUp and DiagonalDown borders using the same lineStyle and color.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">SetInside: Sets the Horizontal and Vertical Borders using the same lineStyle and color.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">SetOutline: Sets the Left, Right, Top and Bottom Borders using the same lineStyle and color.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">SetThemeDiagonals: Sets the DiagonalUp and DiagonalDown Borders using the same lineStyle and themeColor.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">SetThemeInside: Sets the Horizontal and Vertical Borders using the same lineStyle and themeColor.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">SetThemeOutline: Sets the Left, Right, Top and Bottom Borders using the same lineStyle and themeColor.<\/code><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Setting the Borders on a Style\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar worksheet = document.Worksheets&#91; 0 ];\n\n\t\/\/ Specify the borders\n\tvar cellRange = worksheet.Cells&#91; \"B15\", \"C17\" ];\n\tcellRange.Style.Borders.SetInside( LineStyle.Medium, Color.DarkGreen );\n\tcellRange.Style.Borders.SetOutline( LineStyle.Medium, Color.DarkGreen );\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Modifier le remplissage sur le style<\/h2>\n\n\n\n<p>A&nbsp;<em>Remplir<\/em>&nbsp;a \u00e9t\u00e9 ajout\u00e9e \u00e0 la propri\u00e9t\u00e9&nbsp;<em>Style<\/em>&nbsp;pour personnaliser l'aspect du remplissage. La classe&nbsp;<em>Remplir<\/em>&nbsp;est un&nbsp;<em>Remplir<\/em>&nbsp;objet de type.<\/p>\n\n\n\n<p>La classe Fill poss\u00e8de les propri\u00e9t\u00e9s suivantes :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">BackgroundColor: the Color used for filling the background of a Cell, Row, Column or range; null by default.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">BackgroundThemeColor: the ThemeColor used for filling the background of a Cell, Row, Column or range; null by default.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">PatternColor: the Color of the pattern used for filling a Cell, Row, Column or range; null by default. This will be based on the PatternStyle property.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">PatternStyle: the Style of the pattern used for filling a Cell, Row, Column or range; FillPattern.None by default. These will be filled based on the PatternColor property.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">PatternThemeColor: the ThemeColor of the pattern used for filling a Cell, Row, Column or range; null by default. The Cell, Row, Column or range are filled based on the PatternStyle property.<\/code><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Setting the Fill on a Style\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar worksheet = document.Worksheets&#91; 0 ];\n\n\tworksheet.Cells&#91; \"C12\" ].Style.Fill = new Fill() { PatternStyle = FillPattern.ThinDiagonalCrosshatch, PatternColor = Color.Green, BackgroundColor = Color.Blue };\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<p>Plus d'informations dans la quatri\u00e8me partie, restez \u00e0 l'\u00e9coute !<\/p>\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 la troisi\u00e8me partie de cette s\u00e9rie de tutoriels, nous poursuivons notre tour d'horizon des changements apport\u00e9s par Workbooks for .NET v1.2 en examinant la classe ThemeColor\" et la fa\u00e7on de modifier les bordures et le remplissage sur le style.<\/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-2270","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.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Version 1.2 Update in Workbooks for .NET - Part III - 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\/version-1-2-update-in-workbooks-for-net-part-iii\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Version 1.2 Update in Workbooks for .NET - Part III - Xceed\" \/>\n<meta property=\"og:description\" content=\"In part three of this tutorial series, we continue our overview of the changes in Workbooks for .NET v1.2 by examining the ThemeColor class&quot; and how to modify Border and Fill on Style\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/fr\/blog\/tutoriels\/version-1-2-update-in-workbooks-for-net-part-iii\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T17:13:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-04T13:55:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.png\" \/>\n\t<meta property=\"og:image:width\" content=\"393\" \/>\n\t<meta property=\"og:image:height\" content=\"392\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Alain Jreij\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alain Jreij\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Version 1.2 Update in Workbooks for .NET &#8211; Part III\",\"datePublished\":\"2024-10-17T17:13:53+00:00\",\"dateModified\":\"2025-08-04T13:55:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/\"},\"wordCount\":311,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/#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\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/\",\"name\":\"Version 1.2 Update in Workbooks for .NET - Part III - Xceed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN.png\",\"datePublished\":\"2024-10-17T17:13:53+00:00\",\"dateModified\":\"2025-08-04T13:55:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/#primaryimage\",\"url\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN.png\",\"contentUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN.png\",\"width\":393,\"height\":392},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-iii\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Version 1.2 Update in Workbooks for .NET &#8211; Part III\"}]},{\"@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":"Mise \u00e0 jour de la version 1.2 dans les classeurs pour .NET - Partie III - 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\/version-1-2-update-in-workbooks-for-net-part-iii\/","og_locale":"fr_CA","og_type":"article","og_title":"Version 1.2 Update in Workbooks for .NET - Part III - Xceed","og_description":"In part three of this tutorial series, we continue our overview of the changes in Workbooks for .NET v1.2 by examining the ThemeColor class\" and how to modify Border and Fill on Style","og_url":"https:\/\/xceed.com\/fr\/blog\/tutoriels\/version-1-2-update-in-workbooks-for-net-part-iii\/","og_site_name":"Xceed","article_published_time":"2024-10-17T17:13:53+00:00","article_modified_time":"2025-08-04T13:55:30+00:00","og_image":[{"width":393,"height":392,"url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.png","type":"image\/png"}],"author":"Alain Jreij","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Alain Jreij","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Version 1.2 Update in Workbooks for .NET &#8211; Part III","datePublished":"2024-10-17T17:13:53+00:00","dateModified":"2025-08-04T13:55:30+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/"},"wordCount":311,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/#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\/version-1-2-update-in-workbooks-for-net-part-iii\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/","url":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/","name":"Mise \u00e0 jour de la version 1.2 dans les classeurs pour .NET - Partie III - Xceed","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.png","datePublished":"2024-10-17T17:13:53+00:00","dateModified":"2025-08-04T13:55:30+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/#primaryimage","url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.png","contentUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.png","width":393,"height":392},{"@type":"BreadcrumbList","@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-iii\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Version 1.2 Update in Workbooks for .NET &#8211; Part III"}]},{"@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\/2270","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=2270"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts\/2270\/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=2270"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/categories?post=2270"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/tags?post=2270"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}