{"id":2101,"date":"2012-07-23T15:54:17","date_gmt":"2012-07-23T06:54:17","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=2101"},"modified":"2013-01-30T17:06:16","modified_gmt":"2013-01-30T08:06:16","slug":"javascript-api-for-office%e9%81%b8%e6%8a%9e%e7%af%84%e5%9b%b2%e5%a4%89%e6%9b%b4%e6%99%82%e3%81%ae%e3%82%a4%e3%83%99%e3%83%b3%e3%83%88%e3%82%92%e5%88%a9%e7%94%a8%e3%81%99%e3%82%8b%e3%80%82","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=2101","title":{"rendered":"[Office\u7528\u30a2\u30d7\u30ea]\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u5229\u7528\u3059\u308b\u3002"},"content":{"rendered":"<p><span style=\"color: #ff0000; font-weight: bold;\">\u203b \u3053\u306e\u60c5\u5831\u306fOffice 2013 \u30ab\u30b9\u30bf\u30de\u30fc \u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u3092\u5143\u306b\u3057\u3066\u3044\u307e\u3059\u3002\u88fd\u54c1\u7248\u3067\u306f\u5909\u66f4\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u306e\u3067\u3054\u6ce8\u610f\u304f\u3060\u3055\u3044\u3002<\/span><\/p>\n<p>\u4eca\u56de\u306fJavaScript API for Office\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002<br \/>\n\u30a2\u30d7\u30ea\u306e\u8a2d\u5b9a\u3084\u767b\u9332\u65b9\u6cd5\u306b\u3064\u3044\u3066\u306f\u3053\u3053\u3067\u306f\u8aac\u660e\u3057\u307e\u305b\u3093\u306e\u3067\u3001<a href=\"\/\/www.ka-net.org\/blog\/?p=2022\" title=\"JavaScript\u3067Excel 2013\u7528\u4f5c\u696d\u30a6\u30a3\u30f3\u30c9\u30a6\u306e\u30a2\u30d7\u30ea\u3092\u4f5c\u6210\u3059\u308b\u3002(2)\" target=\"_blank\">JavaScript\u3067Excel 2013\u7528\u4f5c\u696d\u30a6\u30a3\u30f3\u30c9\u30a6\u306e\u30a2\u30d7\u30ea\u3092\u4f5c\u6210\u3059\u308b\u3002(2)<\/a>\u3084<a href=\"\/\/www.ka-net.org\/blog\/?p=2050\" title=\"JavaScript\u3067Excel 2013\u7528\u4f5c\u696d\u30a6\u30a3\u30f3\u30c9\u30a6\u306e\u30a2\u30d7\u30ea\u3092\u4f5c\u6210\u3059\u308b\u3002(3)\" target=\"_blank\">JavaScript\u3067Excel 2013\u7528\u4f5c\u696d\u30a6\u30a3\u30f3\u30c9\u30a6\u306e\u30a2\u30d7\u30ea\u3092\u4f5c\u6210\u3059\u308b\u3002(3)<\/a>\u3092\u3054\u53c2\u7167\u304f\u3060\u3055\u3044\u3002<\/p>\n<p><strong>\u30fbhtml<\/strong><\/p>\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;script src=&quot;http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.7.2\/jquery.min.js&quot;&gt;&lt;\/script&gt;\r\n        &lt;script src=&quot;https:\/\/az88874.vo.msecnd.net\/api\/1.0\/office.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;#btnClear&quot;).click(function() {$(&quot;#message&quot;).html(&quot;&quot;);});\r\n                    Office.context.document.addHandlerAsync(Office.EventType.DocumentSelectionChanged, MyHandler);\r\n                });\r\n            }\r\n            \r\n            function MyHandler(eventArgs) {\r\n                write(&quot;Event raised: &quot; + eventArgs.type);\r\n                eventArgs.document.setSelectedDataAsync(&quot;Hello.&quot;);\r\n            }\r\n            \r\n            function write(message) {\r\n                $(&quot;#message&quot;).html($(&quot;#message&quot;).html() + message + &quot;&lt;br&gt;&quot;);\r\n            }\r\n        &lt;\/script&gt;\r\n    &lt;\/head&gt;\r\n    &lt;body&gt;\r\n        &lt;input id=&quot;btnClear&quot; type=&quot;button&quot; value=&quot;Message Clear&quot;&gt;\r\n        &lt;div id=&quot;message&quot;&gt;&lt;\/div&gt;\r\n    &lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>\u4e0a\u8a18\u30b3\u30fc\u30c9\u3092\u8a2d\u5b9a\u3057\u305f\u30a2\u30d7\u30ea\u3092\u633f\u5165\u3059\u308b\u3068\u3001\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u8aad\u307f\u8fbc\u307f\u6642\u306b<span style=\"color: #ff0000; font-weight: bold;\">addHandlerAsync\u30e1\u30bd\u30c3\u30c9<\/span>\u306b\u3088\u3063\u3066Document\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e<span style=\"color: #ff0000; font-weight: bold;\">SelectionChanged\u30a4\u30d9\u30f3\u30c8<\/span>\u3068\u6307\u5b9a\u3057\u305f\u95a2\u6570\u304c\u7d50\u3073\u4ed8\u3051\u3089\u308c\u3001\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306b\u4efb\u610f\u306e\u95a2\u6570(\u4e0a\u8a18\u30b3\u30fc\u30c9\u3067\u306f MyHandler)\u304c\u547c\u3070\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Office2013_15_01.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Office2013_15_01-300x294.jpg\" alt=\"\" title=\"Office2013_15_01\" width=\"300\" height=\"294\" class=\"alignnone size-medium wp-image-2102\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Office2013_15_01-300x294.jpg 300w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Office2013_15_01-75x75.jpg 75w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Office2013_15_01-290x284.jpg 290w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Office2013_15_01-150x147.jpg 150w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Office2013_15_01.jpg 668w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p>\u4f7f\u3044\u65b9\u6b21\u7b2c\u3067\u306f\u4fbf\u5229\u306a\u30a4\u30d9\u30f3\u30c8\u3060\u3068\u601d\u3044\u307e\u3059\u3002<\/p>\n<p><strong>\u30fbDocument.addHandlerAsync method (apps for Office)<\/strong><br \/>\n<a href=\"http:\/\/msdn.microsoft.com\/en-us\/library\/fp161169%28v=office.15%29.aspx\" title=\"Document.addHandlerAsync method (apps for Office)\" target=\"_blank\">http:\/\/msdn.microsoft.com\/en-us\/library\/fp161169%28v=office.15%29.aspx<\/a><br \/>\n<strong>\u30fbDocument.SelectionChanged event (apps for Office)<\/strong><br \/>\n<a href=\"http:\/\/msdn.microsoft.com\/en-us\/library\/fp161062%28v=office.15%29\" title=\"Document.SelectionChanged event (apps for Office)\" target=\"_blank\">http:\/\/msdn.microsoft.com\/en-us\/library\/fp161062%28v=office.15%29<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"\u203b \u3053\u306e\u60c5\u5831\u306fOffice 2013 \u30ab\u30b9\u30bf\u30de\u30fc \u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u3092\u5143\u306b\u3057\u3066\u3044\u307e\u3059\u3002\u88fd\u54c1\u7248\u3067\u306f\u5909\u66f4\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u306e\u3067\u3054\u6ce8\u610f\u304f\u3060\u3055\u3044\u3002 \u4eca\u56de\u306fJavaScript API for Office\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u9078\u629e\u7bc4\u56f2\u5909 [&hellip;]","protected":false},"author":1,"featured_media":7119,"comment_status":"open","ping_status":"open","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":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"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,4,79],"tags":[74,77],"class_list":["post-2101","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-apps-for-office","category-office","category-office2013","tag-office-2013","tag-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=\"\u203b \u3053\u306e\u60c5\u5831\u306fOffice 2013 \u30ab\u30b9\u30bf\u30de\u30fc \u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u3092\u5143\u306b\u3057\u3066\u3044\u307e\u3059\u3002\u88fd\u54c1\u7248\u3067\u306f\u5909\u66f4\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\" \/>\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<meta name=\"keywords\" content=\"office 2013,office \u7528\u30a2\u30d7\u30ea\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ka-net.org\/blog\/?p=2101\" \/>\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\u7528\u30a2\u30d7\u30ea]\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u5229\u7528\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta property=\"og:description\" content=\"\u203b \u3053\u306e\u60c5\u5831\u306fOffice 2013 \u30ab\u30b9\u30bf\u30de\u30fc \u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u3092\u5143\u306b\u3057\u3066\u3044\u307e\u3059\u3002\u88fd\u54c1\u7248\u3067\u306f\u5909\u66f4\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ka-net.org\/blog\/?p=2101\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2012-07-23T06:54:17+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2013-01-30T08:06:16+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"[Office\u7528\u30a2\u30d7\u30ea]\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u5229\u7528\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u203b \u3053\u306e\u60c5\u5831\u306fOffice 2013 \u30ab\u30b9\u30bf\u30de\u30fc \u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u3092\u5143\u306b\u3057\u3066\u3044\u307e\u3059\u3002\u88fd\u54c1\u7248\u3067\u306f\u5909\u66f4\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\" \/>\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=2101#article\",\"name\":\"[Office\\u7528\\u30a2\\u30d7\\u30ea]\\u9078\\u629e\\u7bc4\\u56f2\\u5909\\u66f4\\u6642\\u306e\\u30a4\\u30d9\\u30f3\\u30c8\\u3092\\u5229\\u7528\\u3059\\u308b\\u3002 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"headline\":\"[Office\\u7528\\u30a2\\u30d7\\u30ea]\\u9078\\u629e\\u7bc4\\u56f2\\u5909\\u66f4\\u6642\\u306e\\u30a4\\u30d9\\u30f3\\u30c8\\u3092\\u5229\\u7528\\u3059\\u308b\\u3002\",\"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\":\"2012-07-23T15:54:17+09:00\",\"dateModified\":\"2013-01-30T17:06:16+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2101#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2101#webpage\"},\"articleSection\":\"Office \\u30a2\\u30c9\\u30a4\\u30f3, Office\\u95a2\\u9023, Office 2013, Office 2013, Office \\u7528\\u30a2\\u30d7\\u30ea\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2101#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=4#listItem\",\"name\":\"Office\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4#listItem\",\"position\":2,\"name\":\"Office\\u95a2\\u9023\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=79#listItem\",\"name\":\"Office 2013\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=79#listItem\",\"position\":3,\"name\":\"Office 2013\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=79\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2101#listItem\",\"name\":\"[Office\\u7528\\u30a2\\u30d7\\u30ea]\\u9078\\u629e\\u7bc4\\u56f2\\u5909\\u66f4\\u6642\\u306e\\u30a4\\u30d9\\u30f3\\u30c8\\u3092\\u5229\\u7528\\u3059\\u308b\\u3002\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4#listItem\",\"name\":\"Office\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2101#listItem\",\"position\":4,\"name\":\"[Office\\u7528\\u30a2\\u30d7\\u30ea]\\u9078\\u629e\\u7bc4\\u56f2\\u5909\\u66f4\\u6642\\u306e\\u30a4\\u30d9\\u30f3\\u30c8\\u3092\\u5229\\u7528\\u3059\\u308b\\u3002\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=79#listItem\",\"name\":\"Office 2013\"}}]},{\"@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=2101#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=2101#webpage\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2101\",\"name\":\"[Office\\u7528\\u30a2\\u30d7\\u30ea]\\u9078\\u629e\\u7bc4\\u56f2\\u5909\\u66f4\\u6642\\u306e\\u30a4\\u30d9\\u30f3\\u30c8\\u3092\\u5229\\u7528\\u3059\\u308b\\u3002 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"\\u203b \\u3053\\u306e\\u60c5\\u5831\\u306fOffice 2013 \\u30ab\\u30b9\\u30bf\\u30de\\u30fc \\u30d7\\u30ec\\u30d3\\u30e5\\u30fc\\u7248\\u3092\\u5143\\u306b\\u3057\\u3066\\u3044\\u307e\\u3059\\u3002\\u88fd\\u54c1\\u7248\\u3067\\u306f\\u5909\\u66f4\\u306b\\u306a\\u308b\\u53ef\\u80fd\\u6027\\u304c\\u3042\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2101#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=2101\\\/#mainImage\",\"width\":790,\"height\":480},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2101#mainImage\"},\"datePublished\":\"2012-07-23T15:54:17+09:00\",\"dateModified\":\"2013-01-30T17:06:16+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\u7528\u30a2\u30d7\u30ea]\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u5229\u7528\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u203b \u3053\u306e\u60c5\u5831\u306fOffice 2013 \u30ab\u30b9\u30bf\u30de\u30fc \u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u3092\u5143\u306b\u3057\u3066\u3044\u307e\u3059\u3002\u88fd\u54c1\u7248\u3067\u306f\u5909\u66f4\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042","canonical_url":"https:\/\/www.ka-net.org\/blog\/?p=2101","robots":"max-image-preview:large","keywords":"office 2013,office \u7528\u30a2\u30d7\u30ea","webmasterTools":{"google-site-verification":"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ka-net.org\/blog\/?p=2101#article","name":"[Office\u7528\u30a2\u30d7\u30ea]\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u5229\u7528\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","headline":"[Office\u7528\u30a2\u30d7\u30ea]\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u5229\u7528\u3059\u308b\u3002","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":"2012-07-23T15:54:17+09:00","dateModified":"2013-01-30T17:06:16+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=2101#webpage"},"isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=2101#webpage"},"articleSection":"Office \u30a2\u30c9\u30a4\u30f3, Office\u95a2\u9023, Office 2013, Office 2013, Office \u7528\u30a2\u30d7\u30ea"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ka-net.org\/blog\/?p=2101#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=4#listItem","name":"Office\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=4#listItem","position":2,"name":"Office\u95a2\u9023","item":"https:\/\/www.ka-net.org\/blog\/?cat=4","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=79#listItem","name":"Office 2013"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=79#listItem","position":3,"name":"Office 2013","item":"https:\/\/www.ka-net.org\/blog\/?cat=79","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=2101#listItem","name":"[Office\u7528\u30a2\u30d7\u30ea]\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u5229\u7528\u3059\u308b\u3002"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=4#listItem","name":"Office\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=2101#listItem","position":4,"name":"[Office\u7528\u30a2\u30d7\u30ea]\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u5229\u7528\u3059\u308b\u3002","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=79#listItem","name":"Office 2013"}}]},{"@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=2101#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=2101#webpage","url":"https:\/\/www.ka-net.org\/blog\/?p=2101","name":"[Office\u7528\u30a2\u30d7\u30ea]\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u5229\u7528\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u203b \u3053\u306e\u60c5\u5831\u306fOffice 2013 \u30ab\u30b9\u30bf\u30de\u30fc \u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u3092\u5143\u306b\u3057\u3066\u3044\u307e\u3059\u3002\u88fd\u54c1\u7248\u3067\u306f\u5909\u66f4\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=2101#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=2101\/#mainImage","width":790,"height":480},"primaryImageOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=2101#mainImage"},"datePublished":"2012-07-23T15:54:17+09:00","dateModified":"2013-01-30T17:06:16+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\u7528\u30a2\u30d7\u30ea]\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u5229\u7528\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","og:description":"\u203b \u3053\u306e\u60c5\u5831\u306fOffice 2013 \u30ab\u30b9\u30bf\u30de\u30fc \u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u3092\u5143\u306b\u3057\u3066\u3044\u307e\u3059\u3002\u88fd\u54c1\u7248\u3067\u306f\u5909\u66f4\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042","og:url":"https:\/\/www.ka-net.org\/blog\/?p=2101","article:published_time":"2012-07-23T06:54:17+00:00","article:modified_time":"2013-01-30T08:06:16+00:00","twitter:card":"summary","twitter:title":"[Office\u7528\u30a2\u30d7\u30ea]\u9078\u629e\u7bc4\u56f2\u5909\u66f4\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u5229\u7528\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","twitter:description":"\u203b \u3053\u306e\u60c5\u5831\u306fOffice 2013 \u30ab\u30b9\u30bf\u30de\u30fc \u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u3092\u5143\u306b\u3057\u3066\u3044\u307e\u3059\u3002\u88fd\u54c1\u7248\u3067\u306f\u5909\u66f4\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042"},"aioseo_meta_data":{"post_id":"2101","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:03:56","updated":"2022-09-14 05:18:46","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-xT","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2101","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=2101"}],"version-history":[{"count":5,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2101\/revisions"}],"predecessor-version":[{"id":2668,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2101\/revisions\/2668"}],"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=2101"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2101"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2101"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}