{"id":7972,"date":"2017-02-13T14:15:51","date_gmt":"2017-02-13T05:15:51","guid":{"rendered":"https:\/\/www.ka-net.org\/blog\/?p=7972"},"modified":"2017-02-13T14:15:52","modified_gmt":"2017-02-13T05:15:52","slug":"visio-javascript-api%e3%81%a7%e9%81%8a%e3%82%93%e3%81%a7%e3%81%bf%e3%81%be%e3%81%97%e3%81%9f%e3%80%82","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=7972","title":{"rendered":"Visio JavaScript API\u3067\u904a\u3093\u3067\u307f\u307e\u3057\u305f\u3002"},"content":{"rendered":"<p><a href=\"https:\/\/www.ka-net.org\/blog\/?p=7956\" title=\"Office 365\u3067Visio JavaScript APIs\u3092\u8a66\u3057\u3066\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" target=\"_blank\">\u524d\u56de\u306e\u8a18\u4e8b<\/a>\u3067\u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u300c<a href=\"https:\/\/github.com\/OfficeDev\/office-js-docs\/tree\/VisioJs_1.1_Openspec\" title=\"Visio JavaScript APIs 1.1\" target=\"_blank\">Visio JavaScript API<\/a>\u300d\u3092\u7d39\u4ecb\u3057\u307e\u3057\u305f\u304c\u3001\u3053\u306eAPI\u3067\u3069\u3093\u306a\u3053\u3068\u304c\u3067\u304d\u308b\u306e\u304b\u3001\u8efd\u304f\u904a\u3093\u3067\u307f\u308b\u3053\u3068\u306b\u3057\u307e\u3057\u305f\u3002<\/p>\n<h4 class=\"style4a\">JavaScript\u30b3\u30fc\u30c9<\/h4>\n<p><span style=\"color: #ff0000; font-weight: bold;\">\u203b \u30b3\u30fc\u30c9\u306e\u52d5\u4f5c\u624b\u9806\u306f<a href=\"https:\/\/www.ka-net.org\/blog\/?p=7956\" title=\"Office 365\u3067Visio JavaScript APIs\u3092\u8a66\u3057\u3066\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" target=\"_blank\">\u3053\u3061\u3089\u306e\u8a18\u4e8b<\/a>\u3092\u3054\u53c2\u7167\u304f\u3060\u3055\u3044\u3002<\/span><\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">&lt;script src=&quot;https:\/\/visioonlineapi.azurewebsites.net\/visio.js&quot;&gt;&lt;\/script&gt;\r\n&lt;script&gt;\r\n  document.write(&quot;&lt;h4&gt;Visio\u56f3\u5f62\u57cb\u3081\u8fbc\u307f&lt;\/h4&gt;&quot;);\r\n  document.write(&quot;&lt;input id='fileUrl' type='text' \/&gt;&quot;);\r\n  document.write(&quot;&lt;input type='button' value='Init' onclick='btnInit_onClick()' \/&gt;&quot;);\r\n  document.write(&quot;&lt;input type='button' value='Zoom' onclick='btnZoom_onClick()' \/&gt;&quot;);\r\n  document.write(&quot;&lt;input type='button' value='FitToWindow' onclick='btnFtw_onClick()' \/&gt;&quot;);\r\n  document.write(&quot;&lt;input type='button' value='EnumShapes' onclick='btnEnumShapes_onClick()' \/&gt;&quot;);\r\n  document.write(&quot;&lt;input type='button' value='Hyperlink' onclick='btnHyperlink_onClick()' \/&gt;&quot;);\r\n  document.write(&quot;&lt;div id='iframeHost' \/&gt;&quot;);\r\n  \r\n  \/\/\u521d\u671f\u5316\r\n  function btnInit_onClick(){\r\n    var url = document.getElementById('fileUrl').value;\r\n    if(url){\r\n      \/\/\u57cb\u3081\u8fbc\u307f\u7528URL\u306b\u5909\u63db\r\n      url = url.replace('action=view', 'action=embedview');\r\n      url = url.replace('action=interactivepreview', 'action=embedview');\r\n      \/\/Visio\u56f3\u5f62\u57cb\u3081\u8fbc\u307f\r\n      var session = new OfficeExtension.EmbeddedSession(url,\r\n        {\r\n          id: &quot;embed-iframe&quot;,\r\n          container: document.getElementById('iframeHost')\r\n        }\r\n      );\r\n      return session.init().then(function(){\r\n        OfficeExtension.ClientRequestContext._overrideSession = session;\r\n      });\r\n    }\r\n  }\r\n  \r\n  \/\/\u30ba\u30fc\u30e0\u8a2d\u5b9a\r\n  function btnZoom_onClick(){\r\n    Visio.run(function(ctx){\r\n      var activePage = ctx.document.getActivePage();\r\n      activePage.view.zoom = 100;\r\n      return ctx.sync();\r\n    }).catch(function(error){\r\n      alert(&quot;Error: &quot; + error);\r\n    });\r\n  }\r\n  \r\n  \/\/\u30da\u30fc\u30b8\u30b5\u30a4\u30ba\u3092\u30a6\u30a3\u30f3\u30c9\u30a6\u306b\u5408\u308f\u305b\u308b\r\n  function btnFtw_onClick(){\r\n    Visio.run(function(ctx){\r\n      var activePage = ctx.document.getActivePage();\r\n      activePage.view.fitToWindow();\r\n      return ctx.sync();\r\n    }).catch(function(error){\r\n      alert(&quot;Error: &quot; + error);\r\n    });\r\n  }\r\n  \r\n  \/\/\u30b7\u30a7\u30a4\u30d7\u540d\u3068\u30c6\u30ad\u30b9\u30c8\u5217\u6319\r\n  function btnEnumShapes_onClick(){\r\n    Visio.run(function(ctx){\r\n      var activePage = ctx.document.getActivePage();\r\n      var shapes = activePage.shapes;\r\n      shapes.load();\r\n      return ctx.sync().then(function(){\r\n        for(var i=0; i&lt;shapes.items.length; i++){\r\n          alert(&quot;Name:&quot; + shapes.items&#x5B;i].name + &quot;\\nText:&quot; + shapes.items&#x5B;i].text);\r\n        }\r\n      });\r\n    }).catch(function(error){\r\n      alert(&quot;Error: &quot; + error);\r\n    });\r\n  }\r\n  \r\n  \/\/\u30cf\u30a4\u30d1\u30fc\u30ea\u30f3\u30af\u60c5\u5831\u53d6\u5f97\r\n  function btnHyperlink_onClick(){\r\n    Visio.run(function(ctx){\r\n      var activePage = ctx.document.getActivePage();\r\n      var shape = activePage.shapes.getItem('\u30b3\u30d4\u30fc\u6a5f');\r\n      var hyperlink = shape.hyperlinks.getItem(0);\r\n      hyperlink.load();\r\n      return ctx.sync().then(function(){\r\n        alert(&quot;Address:&quot; + hyperlink.address + &quot;\\nSubAddress:&quot; +  hyperlink.subAddress + &quot;\\nDescription:&quot; + hyperlink.description);\r\n      });\r\n    }).catch(function(error){\r\n      alert(&quot;Error: &quot; + error);\r\n    });\r\n  }\r\n&lt;\/script&gt;<\/pre>\n<h4 class=\"style4a\">\u5b9f\u884c\u753b\u9762<\/h4>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Visio_JavaScript_APIs_03_01.gif\" alt=\"\" width=\"722\" height=\"499\" class=\"alignnone size-full wp-image-7973\" \/><\/p>\n<p>\u30a6\u30a3\u30f3\u30c9\u30a6\u306e\u30ba\u30fc\u30e0\u3084\u30b7\u30a7\u30a4\u30d7\u306e\u5217\u6319\u3001\u30cf\u30a4\u30d1\u30fc\u30ea\u30f3\u30af\u60c5\u5831\u306e\u53d6\u5f97\u3092\u3057\u3066\u307f\u307e\u3057\u305f\u304c\u3001\u3053\u306e\u7a0b\u5ea6\u3067\u3042\u308c\u3070\u554f\u984c\u306a\u304f\u884c\u3048\u308b\u3088\u3046\u3067\u3059\u3002<\/p>\n<p>\u305f\u3060\u3057\u73fe\u6642\u70b9(2017\/2)\u3067\u306f\u3001\u30b7\u30a7\u30a4\u30d7\u306b\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u305f\u308a\u3001\u52d5\u7684\u306b\u30b7\u30a7\u30a4\u30d7\u3092\u914d\u7f6e\u3057\u305f\u308a\u3001\u3068\u3044\u3063\u305f\u3053\u3068\u306f\u3067\u304d\u306a\u3044\u3088\u3046\u306a\u306e\u3067\u3001\u5b9f\u7528\u7684\u306aAPI\u306b\u306a\u308b\u306e\u306f\u307e\u3060\u307e\u3060\u5148\u306e\u3088\u3046\u3067\u3059\u3002<\/p>\n<h4 class=\"style4a\">\u53c2\u8003\u60c5\u5831<\/h4>\n<p>Visio JavaScript API\u306e\u958b\u767a\u8005\u60c5\u5831\u304c\u306a\u3044\u304b\u8abf\u3079\u305f\u3068\u3053\u308d\u3001Visio MVP\u3067\u3042\u308b<a href=\"https:\/\/mvp.microsoft.com\/ja-jp\/PublicProfile\/21090?fullName=David%20John%20Parker\" title=\"David John Parker\" target=\"_blank\">David John Parker<\/a>\u6c0f\u306e<a href=\"https:\/\/blog.bvisual.net\/2017\/02\/09\/visio-javascript-api-preview-announced\/\" title=\"Visio JavaScript API preview announced | bVisual - for people interested in Microsoft Visio\" target=\"_blank\">\u30d6\u30ed\u30b0<\/a>\u306b\u5206\u304b\u308a\u3084\u3059\u3044\u307e\u3068\u3081\u304c\u8f09\u3063\u3066\u3044\u307e\u3057\u305f\u3002<\/p>\n<p>API\u306e\u6982\u8981\u3084\u7acb\u3061\u4f4d\u7f6e\u3001\u30c6\u30b9\u30c8\u624b\u9806\u307e\u3067\u8a73\u3057\u304f\u66f8\u304b\u308c\u3066\u3044\u308b\u306e\u3067\u3001Visio \/ Office 365\u958b\u767a\u8005\u306e\u65b9\u306b\u3068\u3063\u3066\u306f\u304b\u306a\u308a\u6709\u76ca\u306a\u60c5\u5831\u3060\u3068\u601d\u3044\u307e\u3059\u3002<\/p>\n<div style=\"width: 608px; max-width: 100%; margin-bottom:5px;\"><a href=\"https:\/\/docs.com\/david-parker\/5184\/visio-in-the-cloud\" title=\"Visio in the Cloud\" target=\"_blank\" style=\"font-family: 'Segoe UI'; font-size: 13px; text-decoration: none; margin-left:18px \">Visio in the Cloud<\/a><span style=\"font-family: 'Segoe UI'; font-size: 13px \">?<\/span><a href=\"https:\/\/docs.com\/david-parker\" target=\"_blank\" style=\"font-family: 'Segoe UI'; font-size: 13px; text-decoration: none \">David Parker<\/a><\/div>\n<p><iframe loading=\"lazy\" src=\"https:\/\/docs.com\/d\/embed\/D25191561-9906-7796-8140-000380829748%7eMb6c3d50e-c8b1-0436-94d4-2595cf51223f\" frameborder=\"0\" scrolling=\"no\" width=\"608px\" height=\"378px\" style=\"max-width:100%\" allowfullscreen=\"True\"><\/iframe><\/p>\n<p>\u305d\u3046\u3044\u3063\u305f\u308f\u3051\u3067\u3001\u73fe\u6642\u70b9\u3067\u3067\u304d\u308b\u3053\u3068\u306f\u975e\u5e38\u306b\u9650\u3089\u308c\u3066\u3044\u308b\u300c<span style=\"color: #ff0000; font-weight: bold;\">Visio JavaScript API<\/span>\u300d\u3067\u3059\u304c\u3001\u4eca\u5f8c\u306e\u6a5f\u80fd\u8ffd\u52a0\u306b\u3088\u3063\u3066\u3001\u3069\u3093\u3069\u3093\u5b9f\u7528\u7684\u306b\u306a\u3063\u3066\u3044\u304f\u306f\u305a\u3067\u3059\u306e\u3067\u3001\u6c17\u306b\u306a\u308b\u65b9\u306f\u4eca\u304b\u3089\u30c1\u30a7\u30c3\u30af\u3057\u3066\u304a\u304f\u3053\u3068\u3092\u304a\u85a6\u3081\u3057\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\u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u300cVisio JavaScript API\u300d\u3092\u7d39\u4ecb\u3057\u307e\u3057\u305f\u304c\u3001\u3053\u306eAPI\u3067\u3069\u3093\u306a\u3053\u3068\u304c\u3067\u304d\u308b\u306e\u304b\u3001\u8efd\u304f\u904a\u3093\u3067\u307f\u308b\u3053\u3068\u306b\u3057\u307e\u3057\u305f\u3002 JavaScript\u30b3\u30fc\u30c9 \u203b \u30b3\u30fc\u30c9\u306e\u52d5\u4f5c\u624b\u9806\u306f [&hellip;]","protected":false},"author":1,"featured_media":7118,"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":"\u73fe\u6642\u70b9\u3067\u306f\u51fa\u6765\u308b\u3053\u3068\u304c\u975e\u5e38\u306b\u9650\u3089\u308c\u3066\u3044\u307e\u3059\u3002\u4eca\u5f8c\u306b\u671f\u5f85\uff01 [Visio JavaScript API\u3067\u904a\u3093\u3067\u307f\u307e\u3057\u305f]","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,4,112],"tags":[],"class_list":["post-7972","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-apps-for-office","category-office","category-office365"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u300cVisio JavaScript API\u300d\u3092\u7d39\u4ecb\u3057\u307e\u3057\u305f\u304c\u3001\u3053\u306eAP\" \/>\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=7972\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.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=\"Visio JavaScript API\u3067\u904a\u3093\u3067\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta property=\"og:description\" content=\"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u300cVisio JavaScript API\u300d\u3092\u7d39\u4ecb\u3057\u307e\u3057\u305f\u304c\u3001\u3053\u306eAP\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ka-net.org\/blog\/?p=7972\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2017-02-13T05:15:51+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2017-02-13T05:15:52+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Visio JavaScript API\u3067\u904a\u3093\u3067\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u300cVisio JavaScript API\u300d\u3092\u7d39\u4ecb\u3057\u307e\u3057\u305f\u304c\u3001\u3053\u306eAP\" \/>\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=7972#article\",\"name\":\"Visio JavaScript API\\u3067\\u904a\\u3093\\u3067\\u307f\\u307e\\u3057\\u305f\\u3002 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"headline\":\"Visio JavaScript API\\u3067\\u904a\\u3093\\u3067\\u307f\\u307e\\u3057\\u305f\\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-Office365.png\",\"width\":790,\"height\":480},\"datePublished\":\"2017-02-13T14:15:51+09:00\",\"dateModified\":\"2017-02-13T14:15:52+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=7972#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=7972#webpage\"},\"articleSection\":\"Office \\u30a2\\u30c9\\u30a4\\u30f3, Office\\u95a2\\u9023, Office 365\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=7972#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=112#listItem\",\"name\":\"Office 365\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=112#listItem\",\"position\":3,\"name\":\"Office 365\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=112\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=7972#listItem\",\"name\":\"Visio JavaScript API\\u3067\\u904a\\u3093\\u3067\\u307f\\u307e\\u3057\\u305f\\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=7972#listItem\",\"position\":4,\"name\":\"Visio JavaScript API\\u3067\\u904a\\u3093\\u3067\\u307f\\u307e\\u3057\\u305f\\u3002\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=112#listItem\",\"name\":\"Office 365\"}}]},{\"@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=7972#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=7972#webpage\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=7972\",\"name\":\"Visio JavaScript API\\u3067\\u904a\\u3093\\u3067\\u307f\\u307e\\u3057\\u305f\\u3002 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"\\u524d\\u56de\\u306e\\u8a18\\u4e8b\\u3067\\u30d7\\u30ec\\u30d3\\u30e5\\u30fc\\u7248\\u304c\\u30ea\\u30ea\\u30fc\\u30b9\\u3055\\u308c\\u305f\\u300cVisio JavaScript API\\u300d\\u3092\\u7d39\\u4ecb\\u3057\\u307e\\u3057\\u305f\\u304c\\u3001\\u3053\\u306eAP\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=7972#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-Office365.png\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=7972\\\/#mainImage\",\"width\":790,\"height\":480},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=7972#mainImage\"},\"datePublished\":\"2017-02-13T14:15:51+09:00\",\"dateModified\":\"2017-02-13T14:15:52+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":"Visio JavaScript API\u3067\u904a\u3093\u3067\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u300cVisio JavaScript API\u300d\u3092\u7d39\u4ecb\u3057\u307e\u3057\u305f\u304c\u3001\u3053\u306eAP","canonical_url":"https:\/\/www.ka-net.org\/blog\/?p=7972","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=7972#article","name":"Visio JavaScript API\u3067\u904a\u3093\u3067\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","headline":"Visio JavaScript API\u3067\u904a\u3093\u3067\u307f\u307e\u3057\u305f\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-Office365.png","width":790,"height":480},"datePublished":"2017-02-13T14:15:51+09:00","dateModified":"2017-02-13T14:15:52+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=7972#webpage"},"isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=7972#webpage"},"articleSection":"Office \u30a2\u30c9\u30a4\u30f3, Office\u95a2\u9023, Office 365"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ka-net.org\/blog\/?p=7972#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=112#listItem","name":"Office 365"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=112#listItem","position":3,"name":"Office 365","item":"https:\/\/www.ka-net.org\/blog\/?cat=112","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=7972#listItem","name":"Visio JavaScript API\u3067\u904a\u3093\u3067\u307f\u307e\u3057\u305f\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=7972#listItem","position":4,"name":"Visio JavaScript API\u3067\u904a\u3093\u3067\u307f\u307e\u3057\u305f\u3002","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=112#listItem","name":"Office 365"}}]},{"@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=7972#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=7972#webpage","url":"https:\/\/www.ka-net.org\/blog\/?p=7972","name":"Visio JavaScript API\u3067\u904a\u3093\u3067\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u300cVisio JavaScript API\u300d\u3092\u7d39\u4ecb\u3057\u307e\u3057\u305f\u304c\u3001\u3053\u306eAP","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=7972#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-Office365.png","@id":"https:\/\/www.ka-net.org\/blog\/?p=7972\/#mainImage","width":790,"height":480},"primaryImageOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=7972#mainImage"},"datePublished":"2017-02-13T14:15:51+09:00","dateModified":"2017-02-13T14:15:52+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":"Visio JavaScript API\u3067\u904a\u3093\u3067\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","og:description":"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u300cVisio JavaScript API\u300d\u3092\u7d39\u4ecb\u3057\u307e\u3057\u305f\u304c\u3001\u3053\u306eAP","og:url":"https:\/\/www.ka-net.org\/blog\/?p=7972","article:published_time":"2017-02-13T05:15:51+00:00","article:modified_time":"2017-02-13T05:15:52+00:00","twitter:card":"summary","twitter:title":"Visio JavaScript API\u3067\u904a\u3093\u3067\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","twitter:description":"\u524d\u56de\u306e\u8a18\u4e8b\u3067\u30d7\u30ec\u30d3\u30e5\u30fc\u7248\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u300cVisio JavaScript API\u300d\u3092\u7d39\u4ecb\u3057\u307e\u3057\u305f\u304c\u3001\u3053\u306eAP"},"aioseo_meta_data":{"post_id":"7972","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 09:31:37","updated":"2022-09-14 04:20: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-Office365.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-24A","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/7972","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=7972"}],"version-history":[{"count":1,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/7972\/revisions"}],"predecessor-version":[{"id":7974,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/7972\/revisions\/7974"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7118"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=7972"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=7972"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=7972"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}