{"id":10440,"date":"2018-05-28T15:00:56","date_gmt":"2018-05-28T06:00:56","guid":{"rendered":"https:\/\/www.ka-net.org\/blog\/?p=10440"},"modified":"2018-05-28T15:27:56","modified_gmt":"2018-05-28T06:27:56","slug":"office%e3%82%a2%e3%83%89%e3%82%a4%e3%83%b3%e3%82%b7%e3%83%bc%e3%83%88%e8%a6%8b%e5%87%ba%e3%81%97%e3%81%ae%e8%89%b2%e3%82%92%e5%a4%89%e6%9b%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=10440","title":{"rendered":"[Office\u30a2\u30c9\u30a4\u30f3]\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u5909\u66f4\u3059\u308b\u65b9\u6cd5"},"content":{"rendered":"<p><a href=\"https:\/\/www.ka-net.org\/blog\/?p=10437\" title=\"[Office\u30a2\u30c9\u30a4\u30f3]Excel JavaScript API 1.7\u304cGA\u306b\u306a\u308a\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" target=\"_blank\">\u524d\u56de\u306e\u8a18\u4e8b<\/a>\u3067\u7d39\u4ecb\u3057\u305f<a href=\"https:\/\/dev.office.com\/reference\/add-ins\/excel\/excel-add-ins-reference-overview\" title=\"Excel - Docs - Office Dev Center\" target=\"_blank\">Excel JavaScript API \u30d0\u30fc\u30b8\u30e7\u30f31.7<\/a>\u3067\u3001\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u304c\u53d6\u5f97\u30fb\u5909\u66f4\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f\u3002<\/p>\n<h4 class=\"style4a\">\u30de\u30cb\u30d5\u30a7\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb(manifest.xml)<\/h4>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;\r\n&lt;OfficeApp xmlns=&quot;http:\/\/schemas.microsoft.com\/office\/appforoffice\/1.1&quot; xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:type=&quot;TaskPaneApp&quot;&gt;\r\n  &lt;Id&gt;5948f3e3-6c14-4260-99bd-02933fd017cd&lt;\/Id&gt;\r\n  &lt;Version&gt;1.0&lt;\/Version&gt;\r\n  &lt;ProviderName&gt;@kinuasa&lt;\/ProviderName&gt;\r\n  &lt;DefaultLocale&gt;ja-jp&lt;\/DefaultLocale&gt;\r\n  &lt;DisplayName DefaultValue=&quot;Sample - Excel JavaScript API  1.7&quot; \/&gt;\r\n  &lt;Description DefaultValue=&quot;Sample - Excel JavaScript API  1.7&quot;\/&gt;\r\n  &lt;Hosts&gt;\r\n    &lt;Host Name=&quot;Workbook&quot; \/&gt;\r\n  &lt;\/Hosts&gt;\r\n  &lt;DefaultSettings&gt;\r\n    &lt;SourceLocation DefaultValue=&quot;https:\/\/localhost\/apps\/test0528\/index.html&quot; \/&gt;\r\n  &lt;\/DefaultSettings&gt;\r\n  &lt;Permissions&gt;ReadWriteDocument&lt;\/Permissions&gt;\r\n&lt;\/OfficeApp&gt;<\/pre>\n<h4 class=\"style4a\">\u30a2\u30c9\u30a4\u30f3\u672c\u4f53(index.html)<\/h4>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n  &lt;head&gt;\r\n    &lt;meta charset=&quot;UTF-8&quot;&gt;\r\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=Edge&quot;&gt;\r\n    &lt;title&gt;Sample&lt;\/title&gt;\r\n    &lt;link rel=&quot;stylesheet&quot; href=&quot;https:\/\/static2.sharepointonline.com\/files\/fabric\/office-ui-fabric-js\/1.4.0\/css\/fabric.components.min.css&quot;&gt;\r\n    &lt;style&gt;\r\n      #content-main {\r\n        background: #ffffff;\r\n        position: fixed;\r\n        top: 100px;\r\n        left: 0;\r\n        right: 0;\r\n        bottom: 0;\r\n        overflow: auto;\r\n      }\r\n    &lt;\/style&gt;\r\n    &lt;script src=&quot;https:\/\/ajax.aspnetcdn.com\/ajax\/jquery\/jquery-3.3.1.min.js&quot;&gt;&lt;\/script&gt;\r\n    &lt;script src=&quot;https:\/\/appsforoffice.microsoft.com\/lib\/1\/hosted\/office.js&quot;&gt;&lt;\/script&gt;\r\n    &lt;!-- &lt;script src=&quot;https:\/\/appsforoffice.microsoft.com\/lib\/beta\/hosted\/office.js&quot;&gt;&lt;\/script&gt; --&gt;\r\n    &lt;script src=&quot;https:\/\/unpkg.com\/core-js\/client\/core.min.js&quot;&gt;&lt;\/script&gt;\r\n    &lt;script src=&quot;https:\/\/unpkg.com\/@microsoft\/office-js-helpers@0.7.4\/dist\/office.helpers.min.js&quot;&gt;&lt;\/script&gt;\r\n    &lt;script src=&quot;https:\/\/static2.sharepointonline.com\/files\/fabric\/office-ui-fabric-js\/1.4.0\/js\/fabric.min.js&quot;&gt;&lt;\/script&gt;\r\n    &lt;script&gt;\r\n      Office.initialize = function(reason){\r\n        $(document).ready(function(){\r\n          $(&quot;#btn1&quot;).click(getTabColor);\r\n          $(&quot;#btn2&quot;).click(setTabColor);\r\n          $(&quot;#btn3&quot;).click(resetTabColor);\r\n        });\r\n      };\r\n      \r\n      \/\/\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u53d6\u5f97\r\n      function getTabColor(){\r\n        Excel.run(function(context){\r\n          var sht = context.workbook.worksheets.getActiveWorksheet();\r\n          sht.load(&quot;tabColor&quot;);\r\n          return context.sync().then(function(){\r\n            OfficeHelpers.UI.notify(&quot;&quot;, &quot;\u30bf\u30d6\u306e\u8272\uff1a&quot; + sht.tabColor, &quot;success&quot;);\r\n          });\r\n        }).catch(function(error){\r\n          OfficeHelpers.UI.notify(error);\r\n        });\r\n      }\r\n      \r\n      \/\/\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u9752\u306b\u8a2d\u5b9a\r\n      function setTabColor(){\r\n        Excel.run(function(context){\r\n          var sht = context.workbook.worksheets.getActiveWorksheet();\r\n          sht.tabColor = &quot;#0000FF&quot;;\r\n          return context.sync().then(function(){\r\n            OfficeHelpers.UI.notify(&quot;&quot;, &quot;\u51e6\u7406\u6210\u529f&quot;, &quot;success&quot;);\r\n          });\r\n        }).catch(function(error){\r\n          OfficeHelpers.UI.notify(error);\r\n        });\r\n      }\r\n      \r\n      \/\/\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u521d\u671f\u5316\r\n      function resetTabColor(){\r\n        Excel.run(function(context){\r\n          var sht = context.workbook.worksheets.getActiveWorksheet();\r\n          sht.tabColor = &quot;&quot;;\r\n          return context.sync().then(function(){\r\n            OfficeHelpers.UI.notify(&quot;&quot;, &quot;\u51e6\u7406\u6210\u529f&quot;, &quot;success&quot;);\r\n          });\r\n        }).catch(function(error){\r\n          OfficeHelpers.UI.notify(error);\r\n        });\r\n      }\r\n    &lt;\/script&gt;\r\n  &lt;\/head&gt;\r\n  &lt;body&gt;\r\n    &lt;div id=&quot;content-main&quot;&gt;\r\n      &lt;button id=&quot;btn1&quot; class=&quot;ms-Button&quot;&gt;\r\n        &lt;span class=&quot;ms-Button-label&quot;&gt;Get TabColor&lt;\/span&gt;\r\n      &lt;\/button&gt;\r\n      &lt;button id=&quot;btn2&quot; class=&quot;ms-Button&quot;&gt;\r\n        &lt;span class=&quot;ms-Button-label&quot;&gt;Set TabColor&lt;\/span&gt;\r\n      &lt;\/button&gt;\r\n      &lt;button id=&quot;btn3&quot; class=&quot;ms-Button&quot;&gt;\r\n        &lt;span class=&quot;ms-Button-label&quot;&gt;Reset TabColor&lt;\/span&gt;\r\n      &lt;\/button&gt;\r\n    &lt;\/div&gt;\r\n  &lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p><a href=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/ExcelJavaScriptAPI_Worksheet_tabColor_01.gif\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/ExcelJavaScriptAPI_Worksheet_tabColor_01.gif\" alt=\"\" width=\"658\" height=\"583\" class=\"alignnone size-full wp-image-10441\" \/><\/a><\/p>\n<p><a href=\"https:\/\/dev.office.com\/reference\/add-ins\/excel\/worksheet\" title=\"Worksheet - Docs - Office Dev Center\" target=\"_blank\">Worksheet\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306etabColor\u30d7\u30ed\u30d1\u30c6\u30a3<\/a>\u3067\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u306e\u53d6\u5f97\u30fb\u5909\u66f4\u3092\u884c\u3063\u3066\u3044\u307e\u3059\u3002<\/p>\n<p>\u4e0a\u8a18\u30b3\u30fc\u30c9\u3067\u306f\u300116\u9032\u6570\u3067\u8272\u6307\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c\u3001\u300cBlue\u300d\u3084\u300cAqua\u300d\u3068\u3044\u3063\u305f\u8272\u540d\u79f0\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u3002<\/p>\n<div id=\"single_banner_area2\" class=\"clearfix one_banner\">\n<div class=\"single_banner single_banner_left\">\n<script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script>\r\n<!-- \u8a18\u4e8b\u4e2d(\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4\u5e83\u544a\u30e6\u30cb\u30c3\u30c8) -->\r\n<ins class=\"adsbygoogle\"\r\n     style=\"display:block\"\r\n     data-ad-client=\"ca-pub-7306936664602087\"\r\n     data-ad-slot=\"5429724765\"\r\n     data-ad-format=\"auto\"\r\n     data-full-width-responsive=\"true\"><\/ins>\r\n<script>\r\n     (adsbygoogle = window.adsbygoogle || []).push({});\r\n<\/script>\n<\/div>\n<div class=\"single_banner single_banner_right\">\n<a href=\"\" target=\"_blank\"><img decoding=\"async\" src=\"\" alt=\"\" title=\"\" \/><\/a>\n<\/div>\n<\/div>\n\n","protected":false},"excerpt":{"rendered":"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u7d39\u4ecb\u3057\u305fExcel JavaScript API \u30d0\u30fc\u30b8\u30e7\u30f31.7\u3067\u3001\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u304c\u53d6\u5f97\u30fb\u5909\u66f4\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f\u3002 \u30de\u30cb\u30d5\u30a7\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb(manifest.xml) &lt;?xml version= [&hellip;]","protected":false},"author":1,"featured_media":7119,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"[[Office\u30a2\u30c9\u30a4\u30f3]\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u5909\u66f4\u3059\u308b\u65b9\u6cd5]","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[130],"tags":[],"class_list":["post-10440","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-apps-for-office"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u7d39\u4ecb\u3057\u305fExcel JavaScript API \u30d0\u30fc\u30b8\u30e7\u30f31.7\u3067\u3001\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u304c\u53d6\u5f97\u30fb\u5909\u66f4\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"\u304d\u306c\u3042\u3055\"\/>\n\t<meta name=\"google-site-verification\" content=\"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ka-net.org\/blog\/?p=10440\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"[Office\u30a2\u30c9\u30a4\u30f3]\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u5909\u66f4\u3059\u308b\u65b9\u6cd5 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta property=\"og:description\" content=\"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u7d39\u4ecb\u3057\u305fExcel JavaScript API \u30d0\u30fc\u30b8\u30e7\u30f31.7\u3067\u3001\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u304c\u53d6\u5f97\u30fb\u5909\u66f4\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ka-net.org\/blog\/?p=10440\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2018-05-28T06:00:56+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2018-05-28T06:27:56+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"[Office\u30a2\u30c9\u30a4\u30f3]\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u5909\u66f4\u3059\u308b\u65b9\u6cd5 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u7d39\u4ecb\u3057\u305fExcel JavaScript API \u30d0\u30fc\u30b8\u30e7\u30f31.7\u3067\u3001\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u304c\u53d6\u5f97\u30fb\u5909\u66f4\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=10440#article\",\"name\":\"[Office\\u30a2\\u30c9\\u30a4\\u30f3]\\u30b7\\u30fc\\u30c8\\u898b\\u51fa\\u3057\\u306e\\u8272\\u3092\\u5909\\u66f4\\u3059\\u308b\\u65b9\\u6cd5 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"headline\":\"[Office\\u30a2\\u30c9\\u30a4\\u30f3]\\u30b7\\u30fc\\u30c8\\u898b\\u51fa\\u3057\\u306e\\u8272\\u3092\\u5909\\u66f4\\u3059\\u308b\\u65b9\\u6cd5\",\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-OfficeAddins.png\",\"width\":790,\"height\":480},\"datePublished\":\"2018-05-28T15:00:56+09:00\",\"dateModified\":\"2018-05-28T15:27:56+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=10440#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=10440#webpage\"},\"articleSection\":\"Office \\u30a2\\u30c9\\u30a4\\u30f3\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=10440#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=130#listItem\",\"name\":\"Office \\u30a2\\u30c9\\u30a4\\u30f3\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=130#listItem\",\"position\":2,\"name\":\"Office \\u30a2\\u30c9\\u30a4\\u30f3\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=130\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=10440#listItem\",\"name\":\"[Office\\u30a2\\u30c9\\u30a4\\u30f3]\\u30b7\\u30fc\\u30c8\\u898b\\u51fa\\u3057\\u306e\\u8272\\u3092\\u5909\\u66f4\\u3059\\u308b\\u65b9\\u6cd5\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=10440#listItem\",\"position\":3,\"name\":\"[Office\\u30a2\\u30c9\\u30a4\\u30f3]\\u30b7\\u30fc\\u30c8\\u898b\\u51fa\\u3057\\u306e\\u8272\\u3092\\u5909\\u66f4\\u3059\\u308b\\u65b9\\u6cd5\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=130#listItem\",\"name\":\"Office \\u30a2\\u30c9\\u30a4\\u30f3\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1\",\"name\":\"\\u304d\\u306c\\u3042\\u3055\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=10440#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"\\u304d\\u306c\\u3042\\u3055\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=10440#webpage\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=10440\",\"name\":\"[Office\\u30a2\\u30c9\\u30a4\\u30f3]\\u30b7\\u30fc\\u30c8\\u898b\\u51fa\\u3057\\u306e\\u8272\\u3092\\u5909\\u66f4\\u3059\\u308b\\u65b9\\u6cd5 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"\\u524d\\u56de\\u306e\\u8a18\\u4e8b\\u3067\\u7d39\\u4ecb\\u3057\\u305fExcel JavaScript API \\u30d0\\u30fc\\u30b8\\u30e7\\u30f31.7\\u3067\\u3001\\u30b7\\u30fc\\u30c8\\u898b\\u51fa\\u3057\\u306e\\u8272\\u304c\\u53d6\\u5f97\\u30fb\\u5909\\u66f4\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=10440#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-OfficeAddins.png\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=10440\\\/#mainImage\",\"width\":790,\"height\":480},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=10440#mainImage\"},\"datePublished\":\"2018-05-28T15:00:56+09:00\",\"dateModified\":\"2018-05-28T15:27:56+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"[Office\u30a2\u30c9\u30a4\u30f3]\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u5909\u66f4\u3059\u308b\u65b9\u6cd5 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u7d39\u4ecb\u3057\u305fExcel JavaScript API \u30d0\u30fc\u30b8\u30e7\u30f31.7\u3067\u3001\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u304c\u53d6\u5f97\u30fb\u5909\u66f4","canonical_url":"https:\/\/www.ka-net.org\/blog\/?p=10440","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ka-net.org\/blog\/?p=10440#article","name":"[Office\u30a2\u30c9\u30a4\u30f3]\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u5909\u66f4\u3059\u308b\u65b9\u6cd5 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","headline":"[Office\u30a2\u30c9\u30a4\u30f3]\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u5909\u66f4\u3059\u308b\u65b9\u6cd5","author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-OfficeAddins.png","width":790,"height":480},"datePublished":"2018-05-28T15:00:56+09:00","dateModified":"2018-05-28T15:27:56+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=10440#webpage"},"isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=10440#webpage"},"articleSection":"Office \u30a2\u30c9\u30a4\u30f3"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ka-net.org\/blog\/?p=10440#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.ka-net.org\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=130#listItem","name":"Office \u30a2\u30c9\u30a4\u30f3"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=130#listItem","position":2,"name":"Office \u30a2\u30c9\u30a4\u30f3","item":"https:\/\/www.ka-net.org\/blog\/?cat=130","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=10440#listItem","name":"[Office\u30a2\u30c9\u30a4\u30f3]\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u5909\u66f4\u3059\u308b\u65b9\u6cd5"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=10440#listItem","position":3,"name":"[Office\u30a2\u30c9\u30a4\u30f3]\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u5909\u66f4\u3059\u308b\u65b9\u6cd5","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=130#listItem","name":"Office \u30a2\u30c9\u30a4\u30f3"}}]},{"@type":"Organization","@id":"https:\/\/www.ka-net.org\/blog\/#organization","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","url":"https:\/\/www.ka-net.org\/blog\/"},{"@type":"Person","@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author","url":"https:\/\/www.ka-net.org\/blog\/?author=1","name":"\u304d\u306c\u3042\u3055","image":{"@type":"ImageObject","@id":"https:\/\/www.ka-net.org\/blog\/?p=10440#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g","width":96,"height":96,"caption":"\u304d\u306c\u3042\u3055"}},{"@type":"WebPage","@id":"https:\/\/www.ka-net.org\/blog\/?p=10440#webpage","url":"https:\/\/www.ka-net.org\/blog\/?p=10440","name":"[Office\u30a2\u30c9\u30a4\u30f3]\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u5909\u66f4\u3059\u308b\u65b9\u6cd5 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u7d39\u4ecb\u3057\u305fExcel JavaScript API \u30d0\u30fc\u30b8\u30e7\u30f31.7\u3067\u3001\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u304c\u53d6\u5f97\u30fb\u5909\u66f4","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=10440#breadcrumblist"},"author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"creator":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-OfficeAddins.png","@id":"https:\/\/www.ka-net.org\/blog\/?p=10440\/#mainImage","width":790,"height":480},"primaryImageOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=10440#mainImage"},"datePublished":"2018-05-28T15:00:56+09:00","dateModified":"2018-05-28T15:27:56+09:00"},{"@type":"WebSite","@id":"https:\/\/www.ka-net.org\/blog\/#website","url":"https:\/\/www.ka-net.org\/blog\/","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","inLanguage":"ja","publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"}}]},"og:locale":"ja_JP","og:site_name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","og:type":"article","og:title":"[Office\u30a2\u30c9\u30a4\u30f3]\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u5909\u66f4\u3059\u308b\u65b9\u6cd5 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","og:description":"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u7d39\u4ecb\u3057\u305fExcel JavaScript API \u30d0\u30fc\u30b8\u30e7\u30f31.7\u3067\u3001\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u304c\u53d6\u5f97\u30fb\u5909\u66f4","og:url":"https:\/\/www.ka-net.org\/blog\/?p=10440","article:published_time":"2018-05-28T06:00:56+00:00","article:modified_time":"2018-05-28T06:27:56+00:00","twitter:card":"summary","twitter:title":"[Office\u30a2\u30c9\u30a4\u30f3]\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u3092\u5909\u66f4\u3059\u308b\u65b9\u6cd5 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","twitter:description":"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u7d39\u4ecb\u3057\u305fExcel JavaScript API \u30d0\u30fc\u30b8\u30e7\u30f31.7\u3067\u3001\u30b7\u30fc\u30c8\u898b\u51fa\u3057\u306e\u8272\u304c\u53d6\u5f97\u30fb\u5909\u66f4"},"aioseo_meta_data":{"post_id":"10440","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"","defaultPostTypeGraph":""},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-24 07:10:33","updated":"2022-09-14 02:36:11","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-OfficeAddins.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-2Io","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/10440","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=10440"}],"version-history":[{"count":2,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/10440\/revisions"}],"predecessor-version":[{"id":10443,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/10440\/revisions\/10443"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7119"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=10440"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=10440"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=10440"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}