{"id":10796,"date":"2018-09-05T09:00:17","date_gmt":"2018-09-05T00:00:17","guid":{"rendered":"https:\/\/www.ka-net.org\/blog\/?p=10796"},"modified":"2018-09-05T11:24:55","modified_gmt":"2018-09-05T02:24:55","slug":"%e9%81%b8%e6%8a%9e%e4%b8%ad%e3%81%ae%e5%9b%b3%e5%bd%a2%e3%81%ae%e6%96%87%e5%ad%97%e5%88%97%e3%82%92%e8%9b%8d%e5%85%89%e3%83%9a%e3%83%b3%e3%81%a7%e3%83%8f%e3%82%a4%e3%83%a9%e3%82%a4%e3%83%88%e3%81%99","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=10796","title":{"rendered":"\u9078\u629e\u4e2d\u306e\u56f3\u5f62\u306e\u6587\u5b57\u5217\u3092\u86cd\u5149\u30da\u30f3\u3067\u30cf\u30a4\u30e9\u30a4\u30c8\u3059\u308bPowerPoint\u30de\u30af\u30ed"},"content":{"rendered":"<p>MSDN\u30d5\u30a9\u30fc\u30e9\u30e0\u306b<i>\u300cPowerPoint 2016\u3067\u3001\u30de\u30af\u30ed\u3067\u9078\u629e\u4e2d\u306e\u56f3\u5f62\u3092\u30cf\u30a4\u30e9\u30a4\u30c8\u3059\u308b\u3068\u3001\u6587\u5b57\u5217\u306e\u66f8\u5f0f\u304c\u52dd\u624b\u306b\u5909\u308f\u3063\u3066\u3057\u307e\u3046\u300d<\/i>\u3068\u3044\u3063\u305f<a href=\"https:\/\/social.msdn.microsoft.com\/Forums\/ja-JP\/vbajp\/thread\/c6972e55-df2c-4f7c-b221-c87fd6faccd0\" title=\"Powerpoint2016\u306e\u86cd\u5149\u30da\u30f3\u6a5f\u80fd\u3092VBA\u3067\u5b9f\u884c\" target=\"_blank\">\u8cea\u554f<\/a>\u304c\u3042\u308a\u307e\u3057\u305f\u3002<\/p>\n<p>\u78ba\u8a8d\u3057\u3066\u307f\u308b\u3068\u3001\u305f\u3057\u304b\u306b\u5148\u982d\u306e\u6587\u5b57\u306e\u66f8\u5f0f\u304c\u5f8c\u306e\u6587\u5b57\u306b\u307e\u3067\u53cd\u6620\u3055\u308c\u3066\u3057\u307e\u3063\u3066\u3044\u308b\u3088\u3046\u3067\u3059\u3002<\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Public Sub Sample()\r\n  With ActiveWindow.Selection\r\n    Select Case .Type\r\n      Case ppSelectionShapes, ppSelectionText\r\n        .TextRange2.Font.Highlight = vbYellow\r\n    End Select\r\n  End With\r\nEnd Sub<\/pre>\n<p><a href=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBA_HighlightShapeText_01.gif\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBA_HighlightShapeText_01.gif\" alt=\"\" width=\"707\" height=\"439\" class=\"alignnone size-full wp-image-10797\" \/><\/a><\/p>\n<p>PowerPoint\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u539f\u56e0\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u304c\u3001\u4ed6\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u306f\u78ba\u8a8d\u3057\u3066\u3044\u306a\u3044\u306e\u3067\u5206\u304b\u308a\u307e\u305b\u3093\u3002<\/p>\n<p>\u305d\u3053\u3067\u3001\u9078\u629e\u3057\u3066\u3044\u308b\u6587\u5b57\u5217\u3092\u4e00\u6587\u5b57\u305a\u3064\u30cf\u30a4\u30e9\u30a4\u30c8\u3059\u308b\u3088\u3046\u306b\u51e6\u7406\u3092\u5909\u66f4\u3057\u305f\u3068\u3053\u308d\u3001\u66f8\u5f0f\u304c\u52dd\u624b\u306b\u5909\u66f4\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3057\u305f\u3002<\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Public Sub HighlightShapeText()\r\n  Dim char As Office.TextRange2\r\n  \r\n  With ActiveWindow.Selection\r\n    Select Case .Type\r\n      Case ppSelectionShapes, ppSelectionText\r\n        For Each char In .TextRange2.Characters\r\n          char.Font.Highlight = vbYellow\r\n        Next\r\n    End Select\r\n  End With\r\nEnd Sub<\/pre>\n<p><a href=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBA_HighlightShapeText_02.gif\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBA_HighlightShapeText_02.gif\" alt=\"\" width=\"486\" height=\"584\" class=\"alignnone size-full wp-image-10798\" \/><\/a><\/p>\n<p>\u30b3\u30fc\u30c9\u304c\u82e5\u5e72\u9577\u304f\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3059\u304c\u3001\u3068\u308a\u3042\u3048\u305a\u306f\u3053\u308c\u3067\u76ee\u7684\u304c\u9054\u6210\u3067\u304d\u308b\u304b\u3068\u601d\u3044\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":"MSDN\u30d5\u30a9\u30fc\u30e9\u30e0\u306b\u300cPowerPoint 2016\u3067\u3001\u30de\u30af\u30ed\u3067\u9078\u629e\u4e2d\u306e\u56f3\u5f62\u3092\u30cf\u30a4\u30e9\u30a4\u30c8\u3059\u308b\u3068\u3001\u6587\u5b57\u5217\u306e\u66f8\u5f0f\u304c\u52dd\u624b\u306b\u5909\u308f\u3063\u3066\u3057\u307e\u3046\u300d\u3068\u3044\u3063\u305f\u8cea\u554f\u304c\u3042\u308a\u307e\u3057\u305f\u3002 \u78ba\u8a8d\u3057\u3066\u307f\u308b\u3068\u3001\u305f\u3057\u304b\u306b\u5148\u982d\u306e\u6587\u5b57\u306e\u66f8\u5f0f\u304c\u5f8c\u306e\u6587\u5b57\u306b\u307e\u3067\u53cd\u6620 [&hellip;]","protected":false},"author":1,"featured_media":7126,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"[\u9078\u629e\u4e2d\u306e\u56f3\u5f62\u306e\u6587\u5b57\u5217\u3092\u86cd\u5149\u30da\u30f3\u3067\u30cf\u30a4\u30e9\u30a4\u30c8\u3059\u308bPowerPoint\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,58],"tags":[],"class_list":["post-10796","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-office","category-powerpoint"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-PowerPointVBA.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-2O8","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/10796","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=10796"}],"version-history":[{"count":1,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/10796\/revisions"}],"predecessor-version":[{"id":10799,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/10796\/revisions\/10799"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7126"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=10796"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=10796"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=10796"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}