{"id":7244,"date":"2016-08-31T15:22:41","date_gmt":"2016-08-31T06:22:41","guid":{"rendered":"https:\/\/www.ka-net.org\/blog\/?p=7244"},"modified":"2021-01-06T13:25:00","modified_gmt":"2021-01-06T04:25:00","slug":"pdf%e3%81%ae%e3%81%97%e3%81%8a%e3%82%8a%e6%95%b0%e3%82%92%e5%8f%96%e5%be%97%e3%81%99%e3%82%8bvba%e3%83%9e%e3%82%af%e3%83%ad","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=7244","title":{"rendered":"PDF\u306e\u3057\u304a\u308a\u6570\u3092\u53d6\u5f97\u3059\u308bVBA\u30de\u30af\u30ed"},"content":{"rendered":"<p>\u300c<span style=\"color: #ff0000; font-weight: bold;\">VBA Acrobat \u3057\u304a\u308a\u6570<\/span>\u300d\u3068\u3044\u3063\u305f\u30ad\u30fc\u30ef\u30fc\u30c9\u691c\u7d22\u3067\u306e\u30a2\u30af\u30bb\u30b9\u304c\u3042\u308a\u307e\u3057\u305f\u3002<br \/>\nVBA\u304b\u3089PDF\u30d5\u30a1\u30a4\u30eb\u306b\u542b\u307e\u308c\u308b\u3057\u304a\u308a\u306e\u6570\u3092\u53d6\u5f97\u3059\u308b\u65b9\u6cd5\u3092\u63a2\u3057\u3066\u3044\u308b\u65b9\u3060\u308d\u3046\u3068\u601d\u3044\u307e\u3059\u3002<\/p>\n<p>Acrobat JavaScript\u3067\u3057\u304a\u308a\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408\u3001Doc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e<span style=\"color: #ff0000; font-weight: bold;\">bookmarkRoot<\/span>\u30d7\u30ed\u30d1\u30c6\u30a3(Bookmark\u30aa\u30d6\u30b8\u30a7\u30af\u30c8)\u3092\u4f7f\u3046\u3053\u3068\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n<p>VBA\u304b\u3089\u6271\u3046\u5834\u5408\u3082\u540c\u69d8\u3067\u3001GetJSObject\u30e1\u30bd\u30c3\u30c9\u7d4c\u7531\u3067\u5927\u5143\u306eBookmark\u30aa\u30d6\u30b8\u30a7\u30af\u30c8(bookmarkRoot)\u3092\u53d6\u5f97\u3059\u308b\u3068\u3001children\u30d7\u30ed\u30d1\u30c6\u30a3\u304b\u3089\u5404Bookmark\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u64cd\u4f5c\u3092\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n<p>\u5177\u4f53\u7684\u306a\u30b3\u30fc\u30c9\u306f\u4e0b\u8a18\u306e\u901a\u308a\u3067\u3001\u30b3\u30fc\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068\u3001\u3057\u304a\u308a\u306e\u6570\u3068\u5404\u3057\u304a\u308a\u304c\u4f55\u30da\u30fc\u30b8\u76ee\u306b\u3042\u308b\u304b\u3092Debug.Print\u3067\u51fa\u529b\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Option Explicit\r\n\r\nPublic Sub Sample()\r\n  Dim app As Object 'AcroApp\r\n  Dim avdoc As Object 'AcroAVDoc\r\n  Dim avpv As Object 'AcroAVPageView\r\n  Dim jso As Object\r\n  Dim br As Object\r\n  Dim cld As Variant\r\n  Dim i As Long\r\n  Const PdfFilePath = &quot;C:\\Test\\Test001.pdf&quot;\r\n  \r\n  Set app = CreateObject(&quot;AcroExch.App&quot;)\r\n  Set avdoc = CreateObject(&quot;AcroExch.AVDoc&quot;)\r\n  If avdoc.Open(PdfFilePath, &quot;&quot;) = True Then\r\n    app.Show '\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u8868\u793a\r\n    Set avpv = avdoc.GetAVPageView\r\n    Set jso = avdoc.GetPDDoc.GetJSObject\r\n    Set br = CallByName(jso, &quot;bookmarkRoot&quot;, VbGet)\r\n    cld = CallByName(br, &quot;children&quot;, VbGet)\r\n    Debug.Print &quot;\u3057\u304a\u308a\u306e\u6570\uff1a&quot; &amp; UBound(cld) + 1\r\n    For i = LBound(cld) To UBound(cld)\r\n      CallByName cld(i), &quot;execute&quot;, VbMethod '\u3057\u304a\u308a\u9078\u629e\r\n      Debug.Print &quot;\u540d\u524d\uff1a&quot; &amp; CallByName(cld(i), &quot;name&quot;, VbGet) &amp; vbTab &amp; _\r\n                  &quot;\u30da\u30fc\u30b8\uff1a&quot; &amp; avpv.GetPageNum + 1\r\n    Next\r\n    avdoc.Close 1\r\n    app.Hide: app.Exit\r\n  End If\r\n  TerminateAcrobat '\u30d7\u30ed\u30bb\u30b9\u304c\u6b8b\u3063\u305f\u5834\u5408\u5f37\u5236\u7d42\u4e86\r\nEnd Sub\r\n\r\nPrivate Sub TerminateAcrobat()\r\n'Acrobat\u306e\u30d7\u30ed\u30bb\u30b9\u5f37\u5236\u7d42\u4e86\r\n  Dim items As Object\r\n  Dim item As Object\r\n  \r\n  Set items = CreateObject(&quot;WbemScripting.SWbemLocator&quot;) _\r\n            .ConnectServer.ExecQuery(&quot;Select * From Win32_Process Where Name = 'Acrobat.exe'&quot;)\r\n  If items.Count &gt; 0 Then\r\n    For Each item In items\r\n      item.Terminate\r\n    Next\r\n  End If\r\nEnd Sub<\/pre>\n<p>\u901a\u5e38\u3001\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3(AcroApp)\u3092Exit\u3059\u308c\u3070\u30d7\u30ed\u30bb\u30b9\u3082\u6d88\u3048\u3066\u304f\u308c\u308b\u306f\u305a\u306a\u306e\u3067\u3059\u304c\u3001\u4e0a\u8a18\u30b3\u30fc\u30c9\u3092\u8a66\u3057\u305f\u3068\u304d\u306f\u4f55\u6545\u304b\u30d7\u30ed\u30bb\u30b9\u304c\u6b8b\u308a\u7d9a\u3051\u3066\u3057\u307e\u3063\u305f\u306e\u3067\u3001\u4ed5\u65b9\u306a\u304f\u5f37\u5236\u7d42\u4e86\u3059\u308b\u51e6\u7406\u3092\u5165\u308c\u308b\u3053\u3068\u306b\u3057\u307e\u3057\u305f\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<p><span style=\"color: #ff0000; font-weight: bold;\">2021\/1\/6 \u8ffd\u8a18\uff1a<\/span><br \/>\n\u4e0a\u8a18\u30b3\u30fc\u30c9\u3092\u4e00\u90e8\u4fee\u6b63\u3057\u3001PDF\u306e\u8907\u6570\u968e\u5c64\u306e\u3057\u304a\u308a\u60c5\u5831\u3092\u53d6\u5f97\u3059\u308bVBA\u30de\u30af\u30ed\u3092\u66f8\u3044\u3066\u307f\u307e\u3057\u305f\u3002<\/p>\n<div class=\"cardlink\"><a href=\"https:\/\/www.ka-net.org\/blog\/?p=13440\"><div class=\"cardlink_thumbnail\"><img src='https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Acrobat-120x120.png' alt='PDF\u306e\u3057\u304a\u308a\u60c5\u5831\u3092\u51fa\u529b\u3059\u308bVBA\u30de\u30af\u30ed' width=120 height=120 \/><\/a><\/div><div class=\"cardlink_content\"><span class=\"timestamp\">2021.01.06<\/span><div class=\"cardlink_title\"><a href=\"https:\/\/www.ka-net.org\/blog\/?p=13440\">PDF\u306e\u3057\u304a\u308a\u60c5\u5831\u3092\u51fa\u529b\u3059\u308bVBA\u30de\u30af\u30ed <\/a><\/div><div class=\"cardlink_excerpt\">Acrobat\u30d5\u30a9\u30fc\u30e9\u30e0\u306e\u4e0b\u8a18\u30b9\u30ec\u30c3\u30c9\u3067\u5f53\u30d6\u30ed\u30b0\u3078\u306e\u30ea\u30f3\u30af\u304c\u8cbc\u3089\u308c\u3066\u3044\u308b\u3053\u3068\u306b\u6c17\u304c\u4ed8\u304d\u307e\u3057\u305f\u3002\r\n\r\n\r\n\r\nVBA\u3067PDF\u306e\u8907\u6570\u968e\u5c64\u306e\u3057\u304a\u308a\u60c5\u5831\u3092\u53d6\u5f97\u3057\u305f\u3044\u3068\u306e\u3053\u3068\u3067\u3001\u4e0b\u8a18\u8a18\u4e8b\u3092\u53c2\u8003\u306b\u3055\u308c\u305f\u3088\u3046\u3067\u3059\u3002\r\n\r\n\r\n\r\n\u4e0a\u8a18\u8a18\u4e8b\u306e\u30b3\u30fc\u30c9\u306f\u4e00\u756a\u4e0a\u306e\u968e\u5c64\u306e\u3057\u304a\u308a\u3057\u304b...<\/div><\/div><div class=\"cardlink_footer\"><\/div><\/div>\n","protected":false},"excerpt":{"rendered":"\u300cVBA Acrobat \u3057\u304a\u308a\u6570\u300d\u3068\u3044\u3063\u305f\u30ad\u30fc\u30ef\u30fc\u30c9\u691c\u7d22\u3067\u306e\u30a2\u30af\u30bb\u30b9\u304c\u3042\u308a\u307e\u3057\u305f\u3002 VBA\u304b\u3089PDF\u30d5\u30a1\u30a4\u30eb\u306b\u542b\u307e\u308c\u308b\u3057\u304a\u308a\u306e\u6570\u3092\u53d6\u5f97\u3059\u308b\u65b9\u6cd5\u3092\u63a2\u3057\u3066\u3044\u308b\u65b9\u3060\u308d\u3046\u3068\u601d\u3044\u307e\u3059\u3002 Acrobat JavaScript\u3067\u3057\u304a [&hellip;]","protected":false},"author":1,"featured_media":7108,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"VBA\u304b\u3089Acrobat\u3092\u64cd\u4f5c\u3059\u308b\u5834\u5408\u3001GetJSObject\u306e\u6271\u3044\u306f\u307b\u307c\u5fc5\u9808\u3068\u8a00\u3048\u307e\u3059\u3002 [PDF\u306e\u3057\u304a\u308a\u6570\u3092\u53d6\u5f97\u3059\u308bVBA\u30de\u30af\u30ed]","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}},"categories":[4,48,49,58,136],"tags":[],"class_list":["post-7244","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-office","category-excel-office","category-word-office","category-powerpoint","category-acrobat"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Acrobat.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-1SQ","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/7244","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=7244"}],"version-history":[{"count":4,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/7244\/revisions"}],"predecessor-version":[{"id":13444,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/7244\/revisions\/13444"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7108"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=7244"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=7244"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=7244"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}