﻿{"id":3881,"date":"2013-10-03T16:00:39","date_gmt":"2013-10-03T07:00:39","guid":{"rendered":"http:\/\/fujiitoshiki.com\/improvesociety\/?p=3881"},"modified":"2013-10-03T20:40:21","modified_gmt":"2013-10-03T11:40:21","slug":"post-3881","status":"publish","type":"post","link":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881","title":{"rendered":"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74\u306e\u30d7\u30ed\u30d1\u30c6\u30a3"},"content":{"rendered":"<div class=\"theContentWrap-ccc\"><p>\u3000\u7814\u7a76\u8005\u306b\u3068\u3063\u3066\u8ad6\u6587\u306e\u521d\u7248\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u8a18\u9332\u3057\u3066\u304a\u304f\u3068\u6700\u7d42\u7248\u3068\u306e\u6bd4\u8f03\u306b\u4fbf\u5229\u3067\u3059\uff0eWord VBA \u3067\u305d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8abf\u3079\u3066\u307f\u307e\u3057\u305f\uff0e<\/p>\n<p><a href=\"\/\/fujiitoshiki.com\/improvesociety\/wp-content\/uploads\/d7c82a15531e55d41080dfb1d4ab419f.png\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/fujiitoshiki.com\/improvesociety\/wp-content\/uploads\/d7c82a15531e55d41080dfb1d4ab419f-248x300.png\" alt=\"Revision\" width=\"248\" height=\"300\" class=\"alignnone size-medium wp-image-3882\" srcset=\"https:\/\/www.fujiitoshiki.com\/improvesociety\/wp-content\/uploads\/d7c82a15531e55d41080dfb1d4ab419f-248x300.png 248w, https:\/\/www.fujiitoshiki.com\/improvesociety\/wp-content\/uploads\/d7c82a15531e55d41080dfb1d4ab419f-100x120.png 100w, https:\/\/www.fujiitoshiki.com\/improvesociety\/wp-content\/uploads\/d7c82a15531e55d41080dfb1d4ab419f.png 508w\" sizes=\"auto, (max-width: 248px) 85vw, 248px\" \/><\/a><\/p>\n<pre class=\"toolbar-overlay:true lang:vb decode:true\">Option Explicit\r\n\r\nSub Revision()\r\n    Dim myDoc   As Document\r\n    Set myDoc = ActiveDocument\r\n    With myDoc\r\n        .TrackRevisions = True  '\u5909\u66f4\u5c65\u6b74\u958b\u59cb\r\n        .TrackMoves = True      '\u79fb\u52d5\u3092\u8a18\u9332\u3059\u308b\r\n        .TrackFormatting = True '\u66f8\u5f0f\u306e\u5909\u66f4\u3092\u8a18\u9332\u3059\u308b\r\n    End With\r\n    With Options\r\n        '\u633f\u5165\u3055\u308c\u305f\u7b87\u6240'\r\n        .InsertedTextMark = wdInsertedTextMarkBold\r\n        .InsertedTextMark = wdInsertedTextMarkColorOnly\r\n        .InsertedTextMark = wdInsertedTextMarkDoubleStrikeThrough\r\n        .InsertedTextMark = wdInsertedTextMarkDoubleUnderline\r\n        .InsertedTextMark = wdInsertedTextMarkItalic\r\n        .InsertedTextMark = wdInsertedTextMarkNone\r\n        .InsertedTextMark = wdInsertedTextMarkStrikeThrough\r\n        .InsertedTextMark = wdInsertedTextMarkUnderline\r\n        '\uff08\u633f\u5165\u3055\u308c\u305f\u7b87\u6240\u306e\uff09\u8272'\r\n        .InsertedTextColor = wdAuto         '\u81ea\u52d5'\r\n        .InsertedTextColor = wdBlack        '\u9ed2'\r\n        .InsertedTextColor = wdBlue         '\u9752'\r\n        .InsertedTextColor = wdBrightGreen  '\u660e\u308b\u3044\u7dd1'\r\n        .InsertedTextColor = wdByAuthor     '\u6821\u95b2\u8005\u5225'\r\n        .InsertedTextColor = wdDarkBlue     '\u6fc3\u3044\u9752'\r\n        .InsertedTextColor = wdDarkRed      '\u6fc3\u3044\u8d64'\r\n        .InsertedTextColor = wdDarkYellow   '\u6fc3\u3044\u9ec4'\r\n        .InsertedTextColor = wdGray25       '25% \u7070\u8272'\r\n        .InsertedTextColor = wdGray50       '50% \u7070\u8272'\r\n        .InsertedTextColor = wdGreen        '\u7dd1'\r\n        .InsertedTextColor = wdNoHighlight  '\uff08\u306a\u3057\uff09'\r\n        .InsertedTextColor = wdPink         '\u30d4\u30f3\u30af'\r\n        .InsertedTextColor = wdRed          '\u8d64'\r\n        .InsertedTextColor = wdTeal         '\u9752\u7dd1'\r\n        .InsertedTextColor = wdTurquoise    '\u6c34\u8272'\r\n        .InsertedTextColor = wdViolet       '\u7d2b'\r\n        .InsertedTextColor = wdWhite        '\u767d'\r\n        .InsertedTextColor = wdYellow       '\u9ec4'\r\n        '\u524a\u9664\u3055\u308c\u305f\u7b87\u6240'\r\n        .DeletedTextMark = wdDeletedTextMarkBold                '\u592a\u5b57'\r\n        .DeletedTextMark = wdDeletedTextMarkCaret               '^\uff08\u30ad\u30e3\u30ec\u30c3\u30c8\uff09'\r\n        .DeletedTextMark = wdDeletedTextMarkColorOnly           '\u8272\u306e\u307f'\r\n        .DeletedTextMark = wdDeletedTextMarkDoubleStrikeThrough '\u4e8c\u91cd\u53d6\u308a\u6d88\u3057\u7dda'\r\n        .DeletedTextMark = wdDeletedTextMarkDoubleUnderline     '\u4e8c\u91cd\u4e0b\u7dda'\r\n        .DeletedTextMark = wdDeletedTextMarkHidden              '\u96a0\u3057\u6587\u5b57'\r\n        .DeletedTextMark = wdDeletedTextMarkItalic              '\u659c\u4f53'\r\n        .DeletedTextMark = wdDeletedTextMarkNone                '\uff08\u306a\u3057\uff09'\r\n        .DeletedTextMark = wdDeletedTextMarkPound               '#\uff08\u30d1\u30a6\u30f3\u30c9\uff09'\r\n        .DeletedTextMark = wdDeletedTextMarkStrikeThrough       '\u53d6\u308a\u6d88\u3057\u7dda'\r\n        .DeletedTextMark = wdDeletedTextMarkUnderline           '\u4e0b\u7dda'\r\n        '\uff08\u524a\u9664\u3055\u308c\u305f\u7b87\u6240\u306e\uff09\u8272'\r\n        .DeletedTextColor = wdAuto\r\n        .DeletedTextColor = wdBlack\r\n        .DeletedTextColor = wdBlue\r\n        .DeletedTextColor = wdBrightGreen\r\n        .DeletedTextColor = wdByAuthor\r\n        .DeletedTextColor = wdDarkBlue\r\n        .DeletedTextColor = wdDarkRed\r\n        .DeletedTextColor = wdDarkYellow\r\n        .DeletedTextColor = wdGray25\r\n        .DeletedTextColor = wdGray50\r\n        .DeletedTextColor = wdGreen\r\n        .DeletedTextColor = wdNoHighlight\r\n        .DeletedTextColor = wdPink\r\n        .DeletedTextColor = wdRed\r\n        .DeletedTextColor = wdTeal\r\n        .DeletedTextColor = wdTurquoise\r\n        .DeletedTextColor = wdViolet\r\n        .DeletedTextColor = wdWhite\r\n        .DeletedTextColor = wdYellow\r\n        '\u5909\u66f4\u3055\u308c\u305f\u884c'\r\n        .RevisedLinesMark = wdRevisedLinesMarkLeftBorder    '\u5de6\u7f6b\u7dda'\r\n        .RevisedLinesMark = wdRevisedLinesMarkNone          '\uff08\u306a\u3057\uff09'\r\n        .RevisedLinesMark = wdRevisedLinesMarkOutsideBorder '\u5916\u67a0'\r\n        .RevisedLinesMark = wdRevisedLinesMarkRightBorder   '\u53f3\u7f6b\u7dda'\r\n        '\uff08\u5909\u66f4\u3055\u308c\u305f\u884c\u306e\uff09\u8272'\r\n        .RevisedLinesColor = wdAuto\r\n        .RevisedLinesColor = wdBlack\r\n        .RevisedLinesColor = wdBlue\r\n        .RevisedLinesColor = wdBrightGreen\r\n        .RevisedLinesColor = wdByAuthor\r\n        .RevisedLinesColor = wdDarkBlue\r\n        .RevisedLinesColor = wdDarkRed\r\n        .RevisedLinesColor = wdDarkYellow\r\n        .RevisedLinesColor = wdGray25\r\n        .RevisedLinesColor = wdGray50\r\n        .RevisedLinesColor = wdGreen\r\n        .RevisedLinesColor = wdNoHighlight\r\n        .RevisedLinesColor = wdPink\r\n        .RevisedLinesColor = wdRed\r\n        .RevisedLinesColor = wdTeal\r\n        .RevisedLinesColor = wdTurquoise\r\n        .RevisedLinesColor = wdViolet\r\n        .RevisedLinesColor = wdWhite\r\n        .RevisedLinesColor = wdYellow\r\n        '\u30b3\u30e1\u30f3\u30c8\u306e\u8272'\r\n        .CommentsColor = wdAuto\r\n        .CommentsColor = wdBlack\r\n        .CommentsColor = wdBlue\r\n        .CommentsColor = wdBrightGreen\r\n        .CommentsColor = wdByAuthor\r\n        .CommentsColor = wdDarkBlue\r\n        .CommentsColor = wdDarkRed\r\n        .CommentsColor = wdDarkYellow\r\n        .CommentsColor = wdGray25\r\n        .CommentsColor = wdGray50\r\n        .CommentsColor = wdGreen\r\n        .CommentsColor = wdNoHighlight\r\n        .CommentsColor = wdPink\r\n        .CommentsColor = wdRed\r\n        .CommentsColor = wdTeal\r\n        .CommentsColor = wdTurquoise\r\n        .CommentsColor = wdViolet\r\n        .CommentsColor = wdWhite\r\n        .CommentsColor = wdYellow\r\n        '\u79fb\u52d5\u524d'\r\n        .MoveFromTextMark = wdMoveFromTextMarkBold\r\n        .MoveFromTextMark = wdMoveFromTextMarkCaret\r\n        .MoveFromTextMark = wdMoveFromTextMarkColorOnly\r\n        .MoveFromTextMark = wdMoveFromTextMarkDoubleStrikeThrough\r\n        .MoveFromTextMark = wdMoveFromTextMarkDoubleUnderline\r\n        .MoveFromTextMark = wdMoveFromTextMarkHidden\r\n        .MoveFromTextMark = wdMoveFromTextMarkItalic\r\n        .MoveFromTextMark = wdMoveFromTextMarkNone\r\n        .MoveFromTextMark = wdMoveFromTextMarkPound\r\n        .MoveFromTextMark = wdMoveFromTextMarkStrikeThrough\r\n        .MoveFromTextMark = wdMoveFromTextMarkUnderline\r\n        '\uff08\u79fb\u52d5\u524d\u306e\uff09\u8272'\r\n        .MoveFromTextColor = wdAuto\r\n        .MoveFromTextColor = wdBlack\r\n        .MoveFromTextColor = wdBlue\r\n        .MoveFromTextColor = wdBrightGreen\r\n        .MoveFromTextColor = wdByAuthor\r\n        .MoveFromTextColor = wdDarkBlue\r\n        .MoveFromTextColor = wdDarkRed\r\n        .MoveFromTextColor = wdDarkYellow\r\n        .MoveFromTextColor = wdGray25\r\n        .MoveFromTextColor = wdGray50\r\n        .MoveFromTextColor = wdGreen\r\n        .MoveFromTextColor = wdNoHighlight\r\n        .MoveFromTextColor = wdPink\r\n        .MoveFromTextColor = wdRed\r\n        .MoveFromTextColor = wdTeal\r\n        .MoveFromTextColor = wdTurquoise\r\n        .MoveFromTextColor = wdViolet\r\n        .MoveFromTextColor = wdWhite\r\n        .MoveFromTextColor = wdYellow\r\n        '\u79fb\u52d5\u5f8c'\r\n        .MoveToTextMark = wdMoveToTextMarkBold\r\n        .MoveToTextMark = wdMoveToTextMarkColorOnly\r\n        .MoveToTextMark = wdMoveToTextMarkDoubleStrikeThrough\r\n        .MoveToTextMark = wdMoveToTextMarkDoubleUnderline\r\n        .MoveToTextMark = wdMoveToTextMarkItalic\r\n        .MoveToTextMark = wdMoveToTextMarkNone\r\n        .MoveToTextMark = wdMoveToTextMarkStrikeThrough\r\n        .MoveToTextMark = wdMoveToTextMarkUnderline\r\n        '\uff08\u79fb\u52d5\u5f8c\u306e\uff09\u8272'\r\n        .MoveToTextColor = wdAuto\r\n        .MoveToTextColor = wdBlack\r\n        .MoveToTextColor = wdBlue\r\n        .MoveToTextColor = wdBrightGreen\r\n        .MoveToTextColor = wdByAuthor\r\n        .MoveToTextColor = wdDarkBlue\r\n        .MoveToTextColor = wdDarkRed\r\n        .MoveToTextColor = wdDarkYellow\r\n        .MoveToTextColor = wdGray25\r\n        .MoveToTextColor = wdGray50\r\n        .MoveToTextColor = wdGreen\r\n        .MoveToTextColor = wdNoHighlight\r\n        .MoveToTextColor = wdPink\r\n        .MoveToTextColor = wdRed\r\n        .MoveToTextColor = wdTeal\r\n        .MoveToTextColor = wdTurquoise\r\n        .MoveToTextColor = wdViolet\r\n        .MoveToTextColor = wdWhite\r\n        .MoveToTextColor = wdYellow\r\n        '\u633f\u5165\u3055\u308c\u305f\u30bb\u30eb'\r\n        .InsertedCellColor = wdCellColorByAuthor    '\u6821\u95b2\u8005\u5225'\r\n        .InsertedCellColor = wdCellColorLightBlue   '\u8584\u3044\u9752'\r\n        .InsertedCellColor = wdCellColorLightGray   '\u8584\u3044\u7070\u8272'\r\n        .InsertedCellColor = wdCellColorLightGreen  '\u8584\u3044\u7dd1'\r\n        .InsertedCellColor = wdCellColorLightOrange '\u8584\u3044\u30aa\u30ec\u30f3\u30b8'\r\n        .InsertedCellColor = wdCellColorLightPurple '\u8584\u3044\u7d2b'\r\n        .InsertedCellColor = wdCellColorLightYellow '\u8584\u3044\u9ec4'\r\n        .InsertedCellColor = wdCellColorNoHighlight '\uff08\u306a\u3057\uff09'\r\n        .InsertedCellColor = wdCellColorPink        '\u8584\u3044\u30d4\u30f3\u30af'\r\n        '\u7d50\u5408\u3055\u308c\u305f\u30bb\u30eb'\r\n        .MergedCellColor = wdCellColorByAuthor\r\n        .MergedCellColor = wdCellColorLightBlue\r\n        .MergedCellColor = wdCellColorLightGray\r\n        .MergedCellColor = wdCellColorLightGreen\r\n        .MergedCellColor = wdCellColorLightOrange\r\n        .MergedCellColor = wdCellColorLightPurple\r\n        .MergedCellColor = wdCellColorLightYellow\r\n        .MergedCellColor = wdCellColorNoHighlight\r\n        .MergedCellColor = wdCellColorPink\r\n        '\u524a\u9664\u3055\u308c\u305f\u30bb\u30eb'\r\n        .DeletedCellColor = wdCellColorByAuthor\r\n        .DeletedCellColor = wdCellColorLightBlue\r\n        .DeletedCellColor = wdCellColorLightGray\r\n        .DeletedCellColor = wdCellColorLightGreen\r\n        .DeletedCellColor = wdCellColorLightOrange\r\n        .DeletedCellColor = wdCellColorLightPurple\r\n        .DeletedCellColor = wdCellColorLightYellow\r\n        .DeletedCellColor = wdCellColorNoHighlight\r\n        .DeletedCellColor = wdCellColorPink\r\n        '\u5206\u5272\u3055\u308c\u305f\u30bb\u30eb'\r\n        .SplitCellColor = wdCellColorByAuthor\r\n        .SplitCellColor = wdCellColorLightBlue\r\n        .SplitCellColor = wdCellColorLightGray\r\n        .SplitCellColor = wdCellColorLightGreen\r\n        .SplitCellColor = wdCellColorLightOrange\r\n        .SplitCellColor = wdCellColorLightPurple\r\n        .SplitCellColor = wdCellColorLightYellow\r\n        .SplitCellColor = wdCellColorNoHighlight\r\n        .SplitCellColor = wdCellColorPink\r\n        '\u66f8\u5f0f\u304c\u5909\u66f4\u3055\u308c\u305f\u7b87\u6240'\r\n        .RevisedPropertiesMark = wdRevisedPropertiesMarkBold                '\u592a\u5b57'\r\n        .RevisedPropertiesMark = wdRevisedPropertiesMarkColorOnly           '\u8272\u306e\u307f'\r\n        .RevisedPropertiesMark = wdRevisedPropertiesMarkDoubleStrikeThrough '\u4e8c\u91cd\u53d6\u308a\u6d88\u3057\u7dda'\r\n        .RevisedPropertiesMark = wdRevisedPropertiesMarkDoubleUnderline     '\u4e8c\u91cd\u4e0b\u7dda'\r\n        .RevisedPropertiesMark = wdRevisedPropertiesMarkItalic              '\u659c\u4f53'\r\n        .RevisedPropertiesMark = wdRevisedPropertiesMarkNone                '\uff08\u306a\u3057\uff09'\r\n        .RevisedPropertiesMark = wdRevisedPropertiesMarkStrikeThrough       '\u53d6\u308a\u6d88\u3057\u7dda'\r\n        .RevisedPropertiesMark = wdRevisedPropertiesMarkUnderline           '\u4e0b\u7dda'\r\n        '\uff08\u66f8\u5f0f\u304c\u5909\u66f4\u3055\u308c\u305f\uff09\u8272'\r\n        .RevisedPropertiesColor = wdAuto\r\n        .RevisedPropertiesColor = wdBlack\r\n        .RevisedPropertiesColor = wdBlue\r\n        .RevisedPropertiesColor = wdBrightGreen\r\n        .RevisedPropertiesColor = wdByAuthor\r\n        .RevisedPropertiesColor = wdDarkBlue\r\n        .RevisedPropertiesColor = wdDarkRed\r\n        .RevisedPropertiesColor = wdDarkYellow\r\n        .RevisedPropertiesColor = wdGray25\r\n        .RevisedPropertiesColor = wdGray50\r\n        .RevisedPropertiesColor = wdGreen\r\n        .RevisedPropertiesColor = wdNoHighlight\r\n        .RevisedPropertiesColor = wdPink\r\n        .RevisedPropertiesColor = wdRed\r\n        .RevisedPropertiesColor = wdTeal\r\n        .RevisedPropertiesColor = wdTurquoise\r\n        .RevisedPropertiesColor = wdViolet\r\n        .RevisedPropertiesColor = wdWhite\r\n        .RevisedPropertiesColor = wdYellow\r\n        '\u5370\u5237\u3059\u308b\u3068\u304d\u306e\u7528\u7d19\u306e\u5411\u304d'\r\n        .RevisionsBalloonPrintOrientation = wdBalloonPrintOrientationAuto           '\u81ea\u52d5'\r\n        .RevisionsBalloonPrintOrientation = wdBalloonPrintOrientationForceLandscape '\u5e38\u306b\u6a2a\u5411\u304d'\r\n        .RevisionsBalloonPrintOrientation = wdBalloonPrintOrientationPreserve       '\u5909\u66f4\u3057\u306a\u3044'\r\n    End With\r\n    \r\n    With ActiveWindow.View\r\n        '\u5370\u5237\u304a\u3088\u3073Web\u30ec\u30a4\u30a2\u30a6\u30c8\u8868\u793a\u3067\u306e\u5439\u304d\u51fa\u3057\u306e\u4ed5\u69d8'\r\n        .RevisionsMode = wdBalloonRevisions     '\u4f7f\u7528\u3057\u306a\u3044'\r\n        .RevisionsMode = wdInLineRevisions      '\u5e38\u306b\u4f7f\u7528\u3059\u308b'\r\n        .RevisionsMode = wdMixedRevisions       '\u30b3\u30e1\u30f3\u30c8\/\u66f8\u5f0f\u306b\u306e\u307f\u4f7f\u7528'\r\n        '\u6587\u5b57\u5217\u304b\u3089\u306e\u5f15\u304d\u51fa\u3057\u7dda\u3092\u8868\u793a\u3059\u308b'\r\n        .RevisionsBalloonShowConnectingLines = False\r\n        .RevisionsBalloonShowConnectingLines = True\r\n        '\u4f59\u767d'\r\n        .RevisionsBalloonSide = wdLeftMargin    '\u5de6\u4f59\u767d'\r\n        .RevisionsBalloonSide = wdRightMargin   '\u53f3\u4f59\u767d'\r\n        '\u57fa\u6e96'\r\n        .RevisionsBalloonWidthType = wdBalloonWidthPoints   '\u30df\u30ea\u30e1\u30fc\u30c8\u30eb(mm)'\r\n        .RevisionsBalloonWidthType = wdBalloonWidthPercent  '\u30d1\u30fc\u30bb\u30f3\u30c8(%)'\r\n        '\u5439\u304d\u51fa\u3057\u7dda\u306e\u5e45'\r\n        .RevisionsBalloonWidth = MillimetersToPoints(76.2)\r\n        .RevisionsBalloonWidth = 36\r\n    End With\r\nEnd Sub\r\n<\/pre>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>\u3000\u7814\u7a76\u8005\u306b\u3068\u3063\u3066\u8ad6\u6587\u306e\u521d\u7248\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u8a18\u9332\u3057\u3066\u304a\u304f\u3068\u6700\u7d42\u7248\u3068\u306e\u6bd4\u8f03\u306b\u4fbf\u5229\u3067\u3059\uff0eWord VBA \u3067\u305d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8abf\u3079\u3066\u307f\u307e\u3057\u305f\uff0e Option Explicit Sub Revision() Dim myDoc A &hellip; <a href=\"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881\" class=\"more-link\"><span class=\"screen-reader-text\">&#8220;Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74\u306e\u30d7\u30ed\u30d1\u30c6\u30a3&#8221; \u306e<\/span>\u7d9a\u304d\u3092\u8aad\u3080<\/a><\/p>\n","protected":false},"author":1,"featured_media":3882,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[8],"tags":[],"class_list":["post-3881","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-word"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u7814\u7a76\u8005\u306b\u3068\u3063\u3066\u8ad6\u6587\u306e\u521d\u7248\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u8a18\u9332\u3057\u3066\u304a\u304f\u3068\u6700\u7d42\u7248\u3068\u306e\u6bd4\u8f03\u306b\u4fbf\u5229\u3067\u3059\uff0eWord VBA \u3067\u305d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8abf\u3079\u3066\u307f\u307e\u3057\u305f\uff0e\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"admin\"\/>\n\t<meta name=\"keywords\" content=\"word,vba,\u6821\u95b2,\u5909\u66f4\u5c65\u6b74,\u30d7\u30ed\u30d1\u30c6\u30a3,\u521d\u7248,\u6700\u7d42\u7248\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Improve Society | with Database, Statistics and Nutrition\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74 | Improve Society\" \/>\n\t\t<meta property=\"og:description\" content=\"\u7814\u7a76\u8005\u306b\u3068\u3063\u3066\u8ad6\u6587\u306e\u521d\u7248\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u8a18\u9332\u3057\u3066\u304a\u304f\u3068\u6700\u7d42\u7248\u3068\u306e\u6bd4\u8f03\u306b\u4fbf\u5229\u3067\u3059\uff0eWord VBA \u3067\u305d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8abf\u3079\u3066\u307f\u307e\u3057\u305f\uff0e\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2013-10-03T07:00:39+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2013-10-03T11:40:21+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74 | Improve Society\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u7814\u7a76\u8005\u306b\u3068\u3063\u3066\u8ad6\u6587\u306e\u521d\u7248\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u8a18\u9332\u3057\u3066\u304a\u304f\u3068\u6700\u7d42\u7248\u3068\u306e\u6bd4\u8f03\u306b\u4fbf\u5229\u3067\u3059\uff0eWord VBA \u3067\u305d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8abf\u3079\u3066\u307f\u307e\u3057\u305f\uff0e\" \/>\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.fujiitoshiki.com\\\/improvesociety\\\/?p=3881#article\",\"name\":\"Microsoft Word 2010\\u306e\\u30c9\\u30ad\\u30e5\\u30e1\\u30f3\\u30c8\\u306e\\u5909\\u66f4\\u5c65\\u6b74 | Improve Society\",\"headline\":\"Microsoft Word 2010\\u306e\\u30c9\\u30ad\\u30e5\\u30e1\\u30f3\\u30c8\\u306e\\u5909\\u66f4\\u5c65\\u6b74\\u306e\\u30d7\\u30ed\\u30d1\\u30c6\\u30a3\",\"author\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/wp-content\\\/uploads\\\/d7c82a15531e55d41080dfb1d4ab419f.png\",\"width\":508,\"height\":613},\"datePublished\":\"2013-10-03T16:00:39+09:00\",\"dateModified\":\"2013-10-03T20:40:21+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=3881#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=3881#webpage\"},\"articleSection\":\"WORD\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=3881#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?cat=8#listItem\",\"name\":\"WORD\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?cat=8#listItem\",\"position\":2,\"name\":\"WORD\",\"item\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?cat=8\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=3881#listItem\",\"name\":\"Microsoft Word 2010\\u306e\\u30c9\\u30ad\\u30e5\\u30e1\\u30f3\\u30c8\\u306e\\u5909\\u66f4\\u5c65\\u6b74\\u306e\\u30d7\\u30ed\\u30d1\\u30c6\\u30a3\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=3881#listItem\",\"position\":3,\"name\":\"Microsoft Word 2010\\u306e\\u30c9\\u30ad\\u30e5\\u30e1\\u30f3\\u30c8\\u306e\\u5909\\u66f4\\u5c65\\u6b74\\u306e\\u30d7\\u30ed\\u30d1\\u30c6\\u30a3\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?cat=8#listItem\",\"name\":\"WORD\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/#person\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=3881#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ae816121e2fdbfad4bfba7268a6d5a7910d91a047394738018fa9b82a7da661?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"admin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?author=1#author\",\"url\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?author=1\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=3881#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ae816121e2fdbfad4bfba7268a6d5a7910d91a047394738018fa9b82a7da661?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"admin\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=3881#webpage\",\"url\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=3881\",\"name\":\"Microsoft Word 2010\\u306e\\u30c9\\u30ad\\u30e5\\u30e1\\u30f3\\u30c8\\u306e\\u5909\\u66f4\\u5c65\\u6b74 | Improve Society\",\"description\":\"\\u7814\\u7a76\\u8005\\u306b\\u3068\\u3063\\u3066\\u8ad6\\u6587\\u306e\\u521d\\u7248\\u304b\\u3089\\u306e\\u5909\\u66f4\\u5c65\\u6b74\\u3092\\u8a18\\u9332\\u3057\\u3066\\u304a\\u304f\\u3068\\u6700\\u7d42\\u7248\\u3068\\u306e\\u6bd4\\u8f03\\u306b\\u4fbf\\u5229\\u3067\\u3059\\uff0eWord VBA \\u3067\\u305d\\u306e\\u30d7\\u30ed\\u30d1\\u30c6\\u30a3\\u3092\\u8abf\\u3079\\u3066\\u307f\\u307e\\u3057\\u305f\\uff0e\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=3881#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/wp-content\\\/uploads\\\/d7c82a15531e55d41080dfb1d4ab419f.png\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=3881\\\/#mainImage\",\"width\":508,\"height\":613},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/?p=3881#mainImage\"},\"datePublished\":\"2013-10-03T16:00:39+09:00\",\"dateModified\":\"2013-10-03T20:40:21+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/#website\",\"url\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/\",\"name\":\"Improve Society\",\"description\":\"with Database, Statistics and Nutrition\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.fujiitoshiki.com\\\/improvesociety\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74 | Improve Society","description":"\u7814\u7a76\u8005\u306b\u3068\u3063\u3066\u8ad6\u6587\u306e\u521d\u7248\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u8a18\u9332\u3057\u3066\u304a\u304f\u3068\u6700\u7d42\u7248\u3068\u306e\u6bd4\u8f03\u306b\u4fbf\u5229\u3067\u3059\uff0eWord VBA \u3067\u305d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8abf\u3079\u3066\u307f\u307e\u3057\u305f\uff0e","canonical_url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881","robots":"max-image-preview:large","keywords":"word,vba,\u6821\u95b2,\u5909\u66f4\u5c65\u6b74,\u30d7\u30ed\u30d1\u30c6\u30a3,\u521d\u7248,\u6700\u7d42\u7248","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881#article","name":"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74 | Improve Society","headline":"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74\u306e\u30d7\u30ed\u30d1\u30c6\u30a3","author":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?author=1#author"},"publisher":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/wp-content\/uploads\/d7c82a15531e55d41080dfb1d4ab419f.png","width":508,"height":613},"datePublished":"2013-10-03T16:00:39+09:00","dateModified":"2013-10-03T20:40:21+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881#webpage"},"isPartOf":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881#webpage"},"articleSection":"WORD"},{"@type":"BreadcrumbList","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety#listItem","position":1,"name":"Home","item":"https:\/\/www.fujiitoshiki.com\/improvesociety","nextItem":{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?cat=8#listItem","name":"WORD"}},{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?cat=8#listItem","position":2,"name":"WORD","item":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?cat=8","nextItem":{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881#listItem","name":"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74\u306e\u30d7\u30ed\u30d1\u30c6\u30a3"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881#listItem","position":3,"name":"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74\u306e\u30d7\u30ed\u30d1\u30c6\u30a3","previousItem":{"@type":"ListItem","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?cat=8#listItem","name":"WORD"}}]},{"@type":"Person","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/#person","name":"admin","image":{"@type":"ImageObject","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/4ae816121e2fdbfad4bfba7268a6d5a7910d91a047394738018fa9b82a7da661?s=96&d=mm&r=g","width":96,"height":96,"caption":"admin"}},{"@type":"Person","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?author=1#author","url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?author=1","name":"admin","image":{"@type":"ImageObject","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/4ae816121e2fdbfad4bfba7268a6d5a7910d91a047394738018fa9b82a7da661?s=96&d=mm&r=g","width":96,"height":96,"caption":"admin"}},{"@type":"WebPage","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881#webpage","url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881","name":"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74 | Improve Society","description":"\u7814\u7a76\u8005\u306b\u3068\u3063\u3066\u8ad6\u6587\u306e\u521d\u7248\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u8a18\u9332\u3057\u3066\u304a\u304f\u3068\u6700\u7d42\u7248\u3068\u306e\u6bd4\u8f03\u306b\u4fbf\u5229\u3067\u3059\uff0eWord VBA \u3067\u305d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8abf\u3079\u3066\u307f\u307e\u3057\u305f\uff0e","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/#website"},"breadcrumb":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881#breadcrumblist"},"author":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?author=1#author"},"creator":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/wp-content\/uploads\/d7c82a15531e55d41080dfb1d4ab419f.png","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881\/#mainImage","width":508,"height":613},"primaryImageOfPage":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881#mainImage"},"datePublished":"2013-10-03T16:00:39+09:00","dateModified":"2013-10-03T20:40:21+09:00"},{"@type":"WebSite","@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/#website","url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/","name":"Improve Society","description":"with Database, Statistics and Nutrition","inLanguage":"ja","publisher":{"@id":"https:\/\/www.fujiitoshiki.com\/improvesociety\/#person"}}]},"og:locale":"ja_JP","og:site_name":"Improve Society | with Database, Statistics and Nutrition","og:type":"article","og:title":"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74 | Improve Society","og:description":"\u7814\u7a76\u8005\u306b\u3068\u3063\u3066\u8ad6\u6587\u306e\u521d\u7248\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u8a18\u9332\u3057\u3066\u304a\u304f\u3068\u6700\u7d42\u7248\u3068\u306e\u6bd4\u8f03\u306b\u4fbf\u5229\u3067\u3059\uff0eWord VBA \u3067\u305d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8abf\u3079\u3066\u307f\u307e\u3057\u305f\uff0e","og:url":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881","article:published_time":"2013-10-03T07:00:39+00:00","article:modified_time":"2013-10-03T11:40:21+00:00","twitter:card":"summary","twitter:title":"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74 | Improve Society","twitter:description":"\u7814\u7a76\u8005\u306b\u3068\u3063\u3066\u8ad6\u6587\u306e\u521d\u7248\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u8a18\u9332\u3057\u3066\u304a\u304f\u3068\u6700\u7d42\u7248\u3068\u306e\u6bd4\u8f03\u306b\u4fbf\u5229\u3067\u3059\uff0eWord VBA \u3067\u305d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8abf\u3079\u3066\u307f\u307e\u3057\u305f\uff0e"},"aioseo_meta_data":{"post_id":"3881","title":"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74 | #site_title","description":"\u7814\u7a76\u8005\u306b\u3068\u3063\u3066\u8ad6\u6587\u306e\u521d\u7248\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u8a18\u9332\u3057\u3066\u304a\u304f\u3068\u6700\u7d42\u7248\u3068\u306e\u6bd4\u8f03\u306b\u4fbf\u5229\u3067\u3059\uff0eWord VBA \u3067\u305d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8abf\u3079\u3066\u307f\u307e\u3057\u305f\uff0e","keywords":[{"label":"Word","value":"Word"},{"label":"VBA","value":"VBA"},{"label":"\u6821\u95b2","value":"\u6821\u95b2"},{"label":"\u5909\u66f4\u5c65\u6b74","value":"\u5909\u66f4\u5c65\u6b74"},{"label":"\u30d7\u30ed\u30d1\u30c6\u30a3","value":"\u30d7\u30ed\u30d1\u30c6\u30a3"},{"label":"\u521d\u7248","value":"\u521d\u7248"},{"label":"\u6700\u7d42\u7248","value":"\u6700\u7d42\u7248"}],"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":[]},"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,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 23:41:52","updated":"2025-06-04 05:05:25","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.fujiitoshiki.com\/improvesociety\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.fujiitoshiki.com\/improvesociety\/?cat=8\" title=\"WORD\">WORD<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tMicrosoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.fujiitoshiki.com\/improvesociety"},{"label":"WORD","link":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?cat=8"},{"label":"Microsoft Word 2010\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u5909\u66f4\u5c65\u6b74\u306e\u30d7\u30ed\u30d1\u30c6\u30a3","link":"https:\/\/www.fujiitoshiki.com\/improvesociety\/?p=3881"}],"_links":{"self":[{"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/posts\/3881","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3881"}],"version-history":[{"count":8,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/posts\/3881\/revisions"}],"predecessor-version":[{"id":3893,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/posts\/3881\/revisions\/3893"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=\/wp\/v2\/media\/3882"}],"wp:attachment":[{"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3881"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3881"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fujiitoshiki.com\/improvesociety\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3881"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}