{"id":2269,"date":"2024-10-17T17:10:49","date_gmt":"2024-10-17T17:10:49","guid":{"rendered":"http:\/\/localhost:10003\/?p=2269"},"modified":"2025-08-04T13:55:30","modified_gmt":"2025-08-04T13:55:30","slug":"version-1-2-update-in-workbooks-for-net-part-ii","status":"publish","type":"post","link":"https:\/\/xceed.com\/fr\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-ii\/","title":{"rendered":"Mise \u00e0 jour de la version 1.2 dans les classeurs pour .NET - Partie II"},"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\">D\u00e9finition de la largeur d'une plage de colonnes<\/h2>\n\n\n\n<p>Une propri\u00e9t\u00e9 Width (largeur) a \u00e9t\u00e9 ajout\u00e9e \u00e0 l'\u00e9l\u00e9ment&nbsp;<em>Plage de colonnes<\/em>&nbsp;pour d\u00e9finir la largeur des colonnes couvertes par la classe&nbsp;<em>Plage de colonnes<\/em>. L'utilisation d'un&nbsp;<em>Plage de colonnes<\/em>&nbsp;nous permet de d\u00e9finir une gamme de&nbsp;<em>Colonnes<\/em>.<\/p>\n\n\n\n<p>La classe ColumnRange poss\u00e8de les propri\u00e9t\u00e9s suivantes :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">StartingElement: the first WorksheetElement of the range<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">EndingElement: the last WorksheetElement of the range<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Width: the Width of all Columns in the range *NEW*<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Elements: the list of all elements in the range (read-only)<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Count: the number of items in the target range (read-only)<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Style: the Style object for a worksheet element (read-only)<\/code><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Defining a ColumnRange and setting the width of those columns\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar firstSheet = document.Worksheets&#91; 0 ];\n\n\tColumnRange myRange = firstSheet.Columns&#91; \"C\", \"G\" ];\n\tmyRange.Width = 50;\n\n\t\/\/ ...\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Cr\u00e9ation de RowRanges et d\u00e9finition de la hauteur des RowRanges<\/h2>\n\n\n\n<p>Il est d\u00e9sormais possible de d\u00e9finir une plage de lignes cons\u00e9cutives \u00e0 l'aide de la fonction&nbsp;<em>RowRange<\/em>&nbsp;classe. A&nbsp;<em>Hauteur<\/em>&nbsp;est disponible pour d\u00e9finir la hauteur des lignes couvertes par la propri\u00e9t\u00e9&nbsp;<em>RowRange<\/em>.<\/p>\n\n\n\n<p>La classe RowRange poss\u00e8de les propri\u00e9t\u00e9s suivantes :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">StartingElement: the first WorksheetElement of the range<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">EndingElement: the last WorksheetElement of the range<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Height: the Height of all Rows in the range<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Elements: the list of all elements in the range (read-only)<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Count: the number of items in the target range (read-only)<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">Style: the Style object for a worksheet element (read-only)<\/code><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Defining a RowRange and setting the height of those rows\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar firstSheet = document.Worksheets&#91; 0 ];\n\n\tRowRange myRange = firstSheet.Rows&#91; 10, 25 ];\n\tmyRange.Height = 50;\n\n\t\/\/ ...\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Utilisation d'AutoFit pour le RowHeight<\/h2>\n\n\n\n<p>Le&nbsp;<em>Hauteur<\/em>&nbsp;peut \u00eatre ajust\u00e9e automatiquement en fonction de la cellule la plus haute d'une ligne en utilisant la fonction&nbsp;<em>AutoFit()<\/em>&nbsp;disponible sur le site&nbsp;<em>Rang\u00e9e<\/em>&nbsp;classe.<\/p>\n\n\n\n<p>La m\u00e9thode AutoFit() a les param\u00e8tres suivants :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code data-no-translation=\"\">minimumHeight: the minimum desired Height when AutoFitting a Row, 0 point by default.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">maximumHeight: the maximum desired Height when AutoFitting a Row, 409 points by default.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">startColumnId: the id of the Column used as the starting point for the AutoFit's range, 0 or \"A\" by default, which is the first Column in a Row.<\/code><\/li>\n\n\n\n<li><code data-no-translation=\"\">endColumnId: the id of the Column used as the ending point of the AutoFit's range, 16383 or \"XFD\" by default, which is the last possible Column in a Row.<\/code><\/li>\n<\/ul>\n\n\n\n<p>La m\u00e9thode AutoFit() poss\u00e8de deux surcharges, toutes deux avec les m\u00eames noms de param\u00e8tres, mais l'une utilise un entier pour startColumnId et endColumnId afin de sp\u00e9cifier l'identifiant de la colonne par son index, et l'autre utilise des valeurs de cha\u00eene pour sp\u00e9cifier l'identifiant de la colonne par sa lettre (par exemple, l'identifiant 0 est le m\u00eame que l'identifiant \"A\").<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Using AutoFit for the row height\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar firstSheet = document.Worksheets&#91; 0 ];\n\n\t\/\/ Using all default values\n\tfirstSheet.Rows&#91; \"D\" ].AutoFit();\n\n\t\/\/ Using the column IDs as a number index\n\tfirstSheet.Rows&#91; \"E\" ].AutoFit(30, 50, 4, 4);\n\n\t\/\/ Using the column IDs as a letter index this time\n\tfirstSheet.Rows&#91; \"F\" ].AutoFit(30, 50, \"E\", \"E\");\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Modifier le style d'une plage de cellules<\/h2>\n\n\n\n<p>A&nbsp;<em>Style<\/em>&nbsp;a \u00e9t\u00e9 ajout\u00e9e \u00e0 la propri\u00e9t\u00e9&nbsp;<em>Plage de cellules<\/em>&nbsp;pour ajouter la possibilit\u00e9 de sp\u00e9cifier un style sur une plage de cellules.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Setting a Style on a range of cells\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar firstSheet = document.Worksheets&#91; 0 ];\n\n\t\/\/ Specify the cell range\n\tCellRange myRange = firstSheet.Cells&#91; \"A2, L2\" ];\n\n\t\/\/ Specify the style\n\tmyRange.Style.Alignment.Vertical = VerticalAlignment.Center;\n\tmyRange.Style.Alignment.Horizontal = HorizontalAlignment.Center;\n\tmyRange.Style.Font = new Font() { Bold = true, Underline = true, Size = 18d };\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Modifier le style de ColumnRange<\/h2>\n\n\n\n<p>A&nbsp;<em>Style<\/em>&nbsp;a \u00e9t\u00e9 ajout\u00e9e \u00e0 la propri\u00e9t\u00e9&nbsp;<em>Plage de colonnes<\/em>&nbsp;pour ajouter la possibilit\u00e9 de sp\u00e9cifier un style sur une s\u00e9rie de colonnes.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Setting a Style on a range of columns\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar firstSheet = document.Worksheets&#91; 0 ];\n\n\t\/\/ Specify the column range\n\tColumnRange myRange = firstSheet.Columns&#91; \"C\", \"G\" ];\n\n\t\/\/ Specify the style\n\tmyRange.Style.Font.Size = 14d;\n\tmyRange.Style.Font.Name = \"Broadway\";\n\tmyRange.Style.Font.Color = System.Drawing.Color.Blue;\n\tmyRange.Style.Alignment.Vertical = VerticalAlignment.Center;\n\tmyRange.Style.Alignment.Horizontal = HorizontalAlignment.Center;\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Modifier le style de RowRange<\/h2>\n\n\n\n<p>A&nbsp;<em>Style<\/em>&nbsp;a \u00e9t\u00e9 ajout\u00e9e \u00e0 la propri\u00e9t\u00e9&nbsp;<em>RowRange<\/em>&nbsp;pour ajouter la possibilit\u00e9 de sp\u00e9cifier un style sur une s\u00e9rie de lignes.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Setting a Style on a range of rows\nusing( var document = Workbook.Load( \"testDoc.xlsx\" ));\n{\n\tvar firstSheet = document.Worksheets&#91; 0 ];\n\n\t\/\/ Specify the row range\n\tRowRange myRange = firstSheet.Rows&#91; 10, 25 ];\n\n\t\/\/ Specify the style\n\tmyRange.Style.Font.Size = 12d;\n\tmyRange.Style.Font.Name = \"Broadway\";\n\tmyRange.Style.Font.Color = System.Drawing.Color.Green;\n\tmyRange.Style.Alignment.Vertical = VerticalAlignment.Center;\n\tmyRange.Style.Alignment.Horizontal = HorizontalAlignment.Left;\n\n\t\/\/ save the modifications\n\tdocument.Save();\n}\n<\/code><\/pre>\n\n\n\n<p>Plus d'informations dans la troisi\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 deuxi\u00e8me partie de cette s\u00e9rie de tutoriels, nous poursuivons notre aper\u00e7u des modifications apport\u00e9es \u00e0 Workbooks for .NET v1.2 en examinant diff\u00e9rents exemples pour ColumnRange, RowRange, RowHeight et CellRange.<\/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-2269","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 II - 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-ii\/\" \/>\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 II - Xceed\" \/>\n<meta property=\"og:description\" content=\"In part two of this tutorial series, we continue our overview of the changes in Workbooks for .NET v1.2 by examining different examples for ColumnRange, RowRange, RowHeight and CellRange\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/fr\/blog\/tutoriels\/version-1-2-update-in-workbooks-for-net-part-ii\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T17:10:49+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-ii\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-ii\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Version 1.2 Update in Workbooks for .NET &#8211; Part II\",\"datePublished\":\"2024-10-17T17:10:49+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-ii\\\/\"},\"wordCount\":336,\"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-ii\\\/#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-ii\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-ii\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-ii\\\/\",\"name\":\"Version 1.2 Update in Workbooks for .NET - Part II - Xceed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-ii\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-ii\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WBN.png\",\"datePublished\":\"2024-10-17T17:10:49+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-ii\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-ii\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/version-1-2-update-in-workbooks-for-net-part-ii\\\/#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-ii\\\/#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 II\"}]},{\"@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 II - 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-ii\/","og_locale":"fr_CA","og_type":"article","og_title":"Version 1.2 Update in Workbooks for .NET - Part II - Xceed","og_description":"In part two of this tutorial series, we continue our overview of the changes in Workbooks for .NET v1.2 by examining different examples for ColumnRange, RowRange, RowHeight and CellRange","og_url":"https:\/\/xceed.com\/fr\/blog\/tutoriels\/version-1-2-update-in-workbooks-for-net-part-ii\/","og_site_name":"Xceed","article_published_time":"2024-10-17T17:10:49+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-ii\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-ii\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Version 1.2 Update in Workbooks for .NET &#8211; Part II","datePublished":"2024-10-17T17:10:49+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-ii\/"},"wordCount":336,"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-ii\/#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-ii\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-ii\/","url":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-ii\/","name":"Mise \u00e0 jour de la version 1.2 dans les classeurs pour .NET - Partie II - Xceed","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-ii\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-ii\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WBN.png","datePublished":"2024-10-17T17:10:49+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-ii\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-ii\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/xceed.com\/blog\/tutorials\/version-1-2-update-in-workbooks-for-net-part-ii\/#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-ii\/#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 II"}]},{"@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\/2269","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=2269"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/posts\/2269\/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=2269"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/categories?post=2269"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/fr\/wp-json\/wp\/v2\/tags?post=2269"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}