{"id":1075,"date":"2011-12-16T13:56:08","date_gmt":"2011-12-16T04:56:08","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=1075"},"modified":"2011-12-16T13:56:08","modified_gmt":"2011-12-16T04:56:08","slug":"excel-services-ecmascript%e3%82%bb%e3%83%ab%e3%81%ab%e3%83%87%e3%83%bc%e3%82%bf%e3%82%92%e5%85%a5%e5%8a%9b%e3%81%99%e3%82%8b%e3%80%82","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=1075","title":{"rendered":"[Excel Services ECMAScript]\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u3002"},"content":{"rendered":"<p>\u57cb\u3081\u8fbc\u3093\u3060Excel\u30ef\u30fc\u30af\u30d6\u30c3\u30af\u306e\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002<br \/>\n\u8907\u6570\u306e\u30bb\u30eb\u306b\u307e\u3068\u3081\u3066\u5165\u529b\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059\u3002<br \/>\n<!--more--><\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">&lt;script type=&quot;text\/javascript&quot; src=&quot;http:\/\/r.office.microsoft.com\/r\/rlidExcelWLJS?v=1&amp;kip=1&quot;&gt;&lt;\/script&gt;\r\n&lt;script type=&quot;text\/javascript&quot;&gt;\r\n    var fileToken = &quot;SD92A165759188B352!265\/-7880906317294423214\/&quot;;\r\n\r\n    if (window.attachEvent) {\r\n        window.attachEvent(&quot;onload&quot;, loadEwaOnPageLoad);\r\n    } else {\r\n        window.addEventListener(&quot;DOMContentLoaded&quot;, loadEwaOnPageLoad, false);\r\n    }\r\n\r\n    function loadEwaOnPageLoad() {\r\n        var props = {\r\n            uiOptions: {\r\n                showGridlines: false,\r\n                showRowColumnHeaders: false,\r\n                selectedCell: &quot;'Sheet1'!A1&quot;\r\n            },\r\n            interactivityOptions: { }\r\n        };\r\n\r\n        Ewa.EwaControl.loadEwaAsync(fileToken, &quot;myExcelDiv&quot;, props, onEwaLoaded);\r\n    }\r\n\r\n    function onEwaLoaded(result) {\r\n        ewa = Ewa.EwaControl.getInstances().getItem(0);\r\n    }\r\n    \r\n    function fnc1() {\r\n        ewa.getActiveWorkbook().getActiveCell().getValuesAsync(0,getRangeValues,null);\r\n    }\r\n    \r\n    function getRangeValues(asyncResult) {\r\n        if (asyncResult.getCode() == 0) {\r\n            alert(asyncResult.getReturnValue()&#x5B;0]&#x5B;0]);\r\n        } else {\r\n            alert(&quot;Err:&quot; + asyncResult.getDescription());\r\n        }\r\n    }\r\n    \r\n    function fnc2() {\r\n        var ary = new Array();\r\n        ary&#x5B;0] = new Array();\r\n        ary&#x5B;0]&#x5B;0] = &quot;1234567&quot;;\r\n        ewa.getActiveWorkbook().getActiveCell().setValuesAsync(ary,setRangeValue,null);\r\n    }\r\n    \r\n    function setRangeValue(asyncResult) {\r\n        if (asyncResult.getCode() != 0) {\r\n            alert(&quot;Err:&quot; + asyncResult.getDescription());\r\n        }\r\n    }\r\n    \r\n    function fnc3() {\r\n        var ary = new Array();\r\n        ary&#x5B;0] = new Array();\r\n        ary&#x5B;1] = new Array();\r\n        ary&#x5B;0]&#x5B;0] = &quot;abc&quot;;\r\n        ary&#x5B;0]&#x5B;1] = &quot;def&quot;;\r\n        ary&#x5B;0]&#x5B;2] = &quot;ghi&quot;;\r\n        ary&#x5B;1]&#x5B;0] = &quot;jkl&quot;;\r\n        ary&#x5B;1]&#x5B;1] = &quot;mno&quot;;\r\n        ary&#x5B;1]&#x5B;2] = &quot;pqr&quot;;\r\n        ewa.getActiveWorkbook().getActiveSelection().setValuesAsync(ary,setRangeValues,null);\r\n    }\r\n    \r\n    function setRangeValues(asyncResult) {\r\n        if (asyncResult.getCode() != 0) {\r\n            alert(&quot;Err:&quot; + asyncResult.getDescription());\r\n        }\r\n    }\r\n&lt;\/script&gt;\r\n&lt;input type=&quot;button&quot; value=&quot;\u5024\u53d6\u5f97&quot; onclick=&quot;fnc1();&quot;&gt;&lt;\/input&gt;&lt;br&gt;\r\n&lt;input type=&quot;button&quot; value=&quot;\u5024\u5165\u529b&quot; title=&quot;1\u30bb\u30eb\u306e\u307f\u9078\u629e\u3057\u3066\u5b9f\u884c&quot; onclick=&quot;fnc2();&quot;&gt;&lt;\/input&gt;&lt;br&gt;\r\n&lt;input type=&quot;button&quot; value=&quot;\u5024\u5165\u529b(\u8907\u6570\u30bb\u30eb)&quot; title=&quot;2x3\u306e\u30bb\u30eb\u7bc4\u56f2\u3092\u9078\u629e\u3057\u3066\u5b9f\u884c&quot; onclick=&quot;fnc3();&quot;&gt;&lt;\/input&gt;\r\n&lt;div id=&quot;myExcelDiv&quot; style=&quot;width: 400px; height: 150px&quot;&gt;&lt;\/div&gt;<\/pre>\n<p><script type=\"text\/javascript\" src=\"http:\/\/r.office.microsoft.com\/r\/rlidExcelWLJS?v=1&#038;kip=1\"><\/script><br \/>\n<script type=\"text\/javascript\">\n    var fileToken = \"SD92A165759188B352!265\/-7880906317294423214\/\";<\/p>\n<p>    if (window.attachEvent) {\n        window.attachEvent(\"onload\", loadEwaOnPageLoad);\n    } else {\n        window.addEventListener(\"DOMContentLoaded\", loadEwaOnPageLoad, false);\n    }<\/p>\n<p>    function loadEwaOnPageLoad() {\n        var props = {\n            uiOptions: {\n                showGridlines: false,\n                showRowColumnHeaders: false,\n                selectedCell: \"'Sheet1'!A1\"\n            },\n            interactivityOptions: { }\n        };<\/p>\n<p>        Ewa.EwaControl.loadEwaAsync(fileToken, \"myExcelDiv\", props, onEwaLoaded);\n    }<\/p>\n<p>    function onEwaLoaded(result) {\n        ewa = Ewa.EwaControl.getInstances().getItem(0);\n    }<\/p>\n<p>    function fnc1() {\n        ewa.getActiveWorkbook().getActiveCell().getValuesAsync(0,getRangeValues,null);\n    }<\/p>\n<p>    function getRangeValues(asyncResult) {\n        if (asyncResult.getCode() == 0) {\n            alert(asyncResult.getReturnValue()[0][0]);\n        } else {\n            alert(\"Err:\" + asyncResult.getDescription());\n        }\n    }<\/p>\n<p>    function fnc2() {\n        var ary = new Array();\n        ary[0] = new Array();\n        ary[0][0] = \"1234567\";\n        ewa.getActiveWorkbook().getActiveCell().setValuesAsync(ary,setRangeValue,null);\n    }<\/p>\n<p>    function setRangeValue(asyncResult) {\n        if (asyncResult.getCode() != 0) {\n            alert(\"Err:\" + asyncResult.getDescription());\n        }\n    }<\/p>\n<p>    function fnc3() {\n        var ary = new Array();\n        ary[0] = new Array();\n        ary[1] = new Array();\n        ary[0][0] = \"abc\";\n        ary[0][1] = \"def\";\n        ary[0][2] = \"ghi\";\n        ary[1][0] = \"jkl\";\n        ary[1][1] = \"mno\";\n        ary[1][2] = \"pqr\";\n        ewa.getActiveWorkbook().getActiveSelection().setValuesAsync(ary,setRangeValues,null);\n    }<\/p>\n<p>    function setRangeValues(asyncResult) {\n        if (asyncResult.getCode() != 0) {\n            alert(\"Err:\" + asyncResult.getDescription());\n        }\n    }\n<\/script><br \/>\n<input type=\"button\" value=\"\u5024\u53d6\u5f97\" onclick=\"fnc1();\"><\/input><br \/>\n<input type=\"button\" value=\"\u5024\u5165\u529b\" title=\"1\u30bb\u30eb\u306e\u307f\u9078\u629e\u3057\u3066\u5b9f\u884c\" onclick=\"fnc2();\"><\/input><br \/>\n<input type=\"button\" value=\"\u5024\u5165\u529b(\u8907\u6570\u30bb\u30eb)\" title=\"2x3\u306e\u30bb\u30eb\u7bc4\u56f2\u3092\u9078\u629e\u3057\u3066\u5b9f\u884c\" onclick=\"fnc3();\"><\/input><\/p>\n<div id=\"myExcelDiv\" style=\"width: 400px; height: 150px\"><\/div>\n<p><strong>\u30fbEwa.Range.getValuesAsync(format, callback, userContext)<\/strong><br \/>\n<a href=\"http:\/\/msdn.microsoft.com\/en-us\/library\/ee589012.aspx\" title=\"Ewa.Range.getValuesAsync(format, callback, userContext)\" target=\"_blank\">http:\/\/msdn.microsoft.com\/en-us\/library\/ee589012.aspx<\/a><br \/>\n<strong>\u30fbEwa.Range.setValuesAsync(values, callback, userContext)<\/strong><br \/>\n<a href=\"http:\/\/msdn.microsoft.com\/en-us\/library\/ee588957.aspx\" title=\"Ewa.Range.setValuesAsync(values, callback, userContext)\" target=\"_blank\">http:\/\/msdn.microsoft.com\/en-us\/library\/ee588957.aspx<\/a><br \/>\n<strong>\u30fbEwa.Workbook.getActiveSelection()<\/strong><br \/>\n<a href=\"http:\/\/msdn.microsoft.com\/en-us\/library\/ee660082.aspx\" title=\"Ewa.Workbook.getActiveSelection()\" target=\"_blank\">http:\/\/msdn.microsoft.com\/en-us\/library\/ee660082.aspx<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"\u57cb\u3081\u8fbc\u3093\u3060Excel\u30ef\u30fc\u30af\u30d6\u30c3\u30af\u306e\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \u8907\u6570\u306e\u30bb\u30eb\u306b\u307e\u3068\u3081\u3066\u5165\u529b\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059\u3002","protected":false},"author":1,"featured_media":7111,"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":[4,41],"tags":[38,39,40,140],"class_list":["post-1075","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-office","category-excel-services-ecmascript","tag-office-web-apps","tag-excel-web-app","tag-excelmashup","tag-excel-services-ecmascript"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u57cb\u3081\u8fbc\u3093\u3060Excel\u30ef\u30fc\u30af\u30d6\u30c3\u30af\u306e\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \u8907\u6570\u306e\u30bb\u30eb\u306b\u307e\u3068\u3081\u3066\u5165\u529b\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\" \/>\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 web apps,excel web app,excelmashup,excel services ecmascript\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ka-net.org\/blog\/?p=1075\" \/>\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=\"[Excel Services ECMAScript]\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta property=\"og:description\" content=\"\u57cb\u3081\u8fbc\u3093\u3060Excel\u30ef\u30fc\u30af\u30d6\u30c3\u30af\u306e\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \u8907\u6570\u306e\u30bb\u30eb\u306b\u307e\u3068\u3081\u3066\u5165\u529b\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ka-net.org\/blog\/?p=1075\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2011-12-16T04:56:08+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2011-12-16T04:56:08+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"[Excel Services ECMAScript]\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u57cb\u3081\u8fbc\u3093\u3060Excel\u30ef\u30fc\u30af\u30d6\u30c3\u30af\u306e\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \u8907\u6570\u306e\u30bb\u30eb\u306b\u307e\u3068\u3081\u3066\u5165\u529b\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\" \/>\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=1075#article\",\"name\":\"[Excel Services ECMAScript]\\u30bb\\u30eb\\u306b\\u30c7\\u30fc\\u30bf\\u3092\\u5165\\u529b\\u3059\\u308b\\u3002 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"headline\":\"[Excel Services ECMAScript]\\u30bb\\u30eb\\u306b\\u30c7\\u30fc\\u30bf\\u3092\\u5165\\u529b\\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-Excel.png\",\"width\":790,\"height\":480},\"datePublished\":\"2011-12-16T13:56:08+09:00\",\"dateModified\":\"2011-12-16T13:56:08+09:00\",\"inLanguage\":\"ja\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1075#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1075#webpage\"},\"articleSection\":\"Office\\u95a2\\u9023, Excel Services ECMAScript, Office Web Apps, Excel Web App, ExcelMashup, Excel Services ECMAScript\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1075#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\\\/?p=1075#listItem\",\"name\":\"[Excel Services ECMAScript]\\u30bb\\u30eb\\u306b\\u30c7\\u30fc\\u30bf\\u3092\\u5165\\u529b\\u3059\\u308b\\u3002\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1075#listItem\",\"position\":3,\"name\":\"[Excel Services ECMAScript]\\u30bb\\u30eb\\u306b\\u30c7\\u30fc\\u30bf\\u3092\\u5165\\u529b\\u3059\\u308b\\u3002\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4#listItem\",\"name\":\"Office\\u95a2\\u9023\"}}]},{\"@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=1075#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=1075#webpage\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1075\",\"name\":\"[Excel Services ECMAScript]\\u30bb\\u30eb\\u306b\\u30c7\\u30fc\\u30bf\\u3092\\u5165\\u529b\\u3059\\u308b\\u3002 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"\\u57cb\\u3081\\u8fbc\\u3093\\u3060Excel\\u30ef\\u30fc\\u30af\\u30d6\\u30c3\\u30af\\u306e\\u30bb\\u30eb\\u306b\\u30c7\\u30fc\\u30bf\\u3092\\u5165\\u529b\\u3059\\u308b\\u30b3\\u30fc\\u30c9\\u3067\\u3059\\u3002 \\u8907\\u6570\\u306e\\u30bb\\u30eb\\u306b\\u307e\\u3068\\u3081\\u3066\\u5165\\u529b\\u3059\\u308b\\u3053\\u3068\\u3082\\u53ef\\u80fd\\u3067\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1075#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-Excel.png\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1075\\\/#mainImage\",\"width\":790,\"height\":480},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1075#mainImage\"},\"datePublished\":\"2011-12-16T13:56:08+09:00\",\"dateModified\":\"2011-12-16T13:56:08+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":"[Excel Services ECMAScript]\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u57cb\u3081\u8fbc\u3093\u3060Excel\u30ef\u30fc\u30af\u30d6\u30c3\u30af\u306e\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \u8907\u6570\u306e\u30bb\u30eb\u306b\u307e\u3068\u3081\u3066\u5165\u529b\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067","canonical_url":"https:\/\/www.ka-net.org\/blog\/?p=1075","robots":"max-image-preview:large","keywords":"office web apps,excel web app,excelmashup,excel services ecmascript","webmasterTools":{"google-site-verification":"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ka-net.org\/blog\/?p=1075#article","name":"[Excel Services ECMAScript]\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","headline":"[Excel Services ECMAScript]\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\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-Excel.png","width":790,"height":480},"datePublished":"2011-12-16T13:56:08+09:00","dateModified":"2011-12-16T13:56:08+09:00","inLanguage":"ja","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=1075#webpage"},"isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=1075#webpage"},"articleSection":"Office\u95a2\u9023, Excel Services ECMAScript, Office Web Apps, Excel Web App, ExcelMashup, Excel Services ECMAScript"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ka-net.org\/blog\/?p=1075#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\/?p=1075#listItem","name":"[Excel Services ECMAScript]\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u3002"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=1075#listItem","position":3,"name":"[Excel Services ECMAScript]\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u3002","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=4#listItem","name":"Office\u95a2\u9023"}}]},{"@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=1075#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=1075#webpage","url":"https:\/\/www.ka-net.org\/blog\/?p=1075","name":"[Excel Services ECMAScript]\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u57cb\u3081\u8fbc\u3093\u3060Excel\u30ef\u30fc\u30af\u30d6\u30c3\u30af\u306e\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \u8907\u6570\u306e\u30bb\u30eb\u306b\u307e\u3068\u3081\u3066\u5165\u529b\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=1075#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-Excel.png","@id":"https:\/\/www.ka-net.org\/blog\/?p=1075\/#mainImage","width":790,"height":480},"primaryImageOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=1075#mainImage"},"datePublished":"2011-12-16T13:56:08+09:00","dateModified":"2011-12-16T13:56:08+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":"[Excel Services ECMAScript]\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","og:description":"\u57cb\u3081\u8fbc\u3093\u3060Excel\u30ef\u30fc\u30af\u30d6\u30c3\u30af\u306e\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \u8907\u6570\u306e\u30bb\u30eb\u306b\u307e\u3068\u3081\u3066\u5165\u529b\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067","og:url":"https:\/\/www.ka-net.org\/blog\/?p=1075","article:published_time":"2011-12-16T04:56:08+00:00","article:modified_time":"2011-12-16T04:56:08+00:00","twitter:card":"summary","twitter:title":"[Excel Services ECMAScript]\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","twitter:description":"\u57cb\u3081\u8fbc\u3093\u3060Excel\u30ef\u30fc\u30af\u30d6\u30c3\u30af\u306e\u30bb\u30eb\u306b\u30c7\u30fc\u30bf\u3092\u5165\u529b\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \u8907\u6570\u306e\u30bb\u30eb\u306b\u307e\u3068\u3081\u3066\u5165\u529b\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067"},"aioseo_meta_data":{"post_id":"1075","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:01:19","updated":"2022-09-14 05:05:02","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-Excel.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-hl","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/1075","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=1075"}],"version-history":[{"count":3,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/1075\/revisions"}],"predecessor-version":[{"id":1078,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/1075\/revisions\/1078"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7111"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1075"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1075"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1075"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}