・Office 2013 アイコン一覧
| NUM | A | B | C | D | E | F |
| G | H | I | J | K | L | M |
| N | O | P | Q | R | S | T |
| U | V | W | X | Y | Z |
■ NUM
| _0 | _0PercentComplete | _1 | _100PercentComplete | ||||
| _2 | _25PercentComplete | _3 | _3DBevelOptionsDialog | ||||
| _3DBevelPictureTopGallery | _3DDirectionGalleryClassic | _3DEffectColorPickerClassic | _3DEffectsGalleryClassic | ||||
| _3DEffectsOnOffClassic | _3DExtrusionDepth144Classic | _3DExtrusionDepth288Classic | _3DExtrusionDepth36Classic | ||||
| _3DExtrusionDepth72Classic | _3DExtrusionDepthGalleryClassic | _3DExtrusionDepthInfinityClassic | _3DExtrusionDepthNoneClassic | ||||
| _3DExtrusionDirectionClassic | _3DExtrusionParallelClassic | _3DExtrusionPerspectiveClassic | _3DLightGallery | ||||
| _3DLightingClassic | _3DLightingDimClassic | _3DLightingFlatClassic | _3DLightingGalleryClassic | ||||
| _3DLightingNormalClassic | _3DMaterialGallery | _3DMaterialMetal | _3DMaterialMixed | ||||
| _3DMaterialPlastic | _3DPerspectiveDecrease | _3DPerspectiveIncrease | _3DRotationGallery | ||||
| _3DRotationOptionsDialog | _3DStyle | _3DSurfaceMaterialClassic | _3DSurfaceMaterialGalleryClassic | ||||
| _3DSurfaceMatteClassic | _3DSurfaceMetalClassic | _3DSurfacePlasticClassic | _3DSurfaceWireFrameClassic | ||||
| _3DTiltDownClassic | _3DTiltLeftClassic | _3DTiltRightClassic | _3DTiltUpClassic | ||||
| _4 | _5 | _50PercentComplete | _6 | ||||
| _7 | _75PercentComplete | _8 | _9 | ||||
「Download Microsoft Office Document: [MS-CUSTOMUI2] Supporting Documentation from Official Microsoft Download Center」にある「imageMso.txt」ファイルを元に、Office 2013のアイコン一覧を作成しました。
上図の通りアイコンイメージとコントロール IDが対応しています。
下記のように、リボンをカスタマイズするときやGetImageMsoメソッドを使うときにご活用ください。
・リボンXML
<?xml version="1.0" encoding="utf-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon>
<tabs>
<tab id="tabSample" label="Sample Tab">
<group id="grpSample" label="Sample Group">
<button id="btnSample" label="Sample Button" imageMso="HappyFace" size="large" />
</group>
</tab>
</tabs>
</ribbon>
</customUI>
・GetImageMsoメソッドの利用例
Option Explicit
Private Sub CommandButton1_Click()
Me.CommandButton1.Picture = _
Application.CommandBars.GetImageMso("HappyFace", 80, 80)
End Sub
※ 注意事項
- 当アイコン一覧は「Download Microsoft Office Document: [MS-CUSTOMUI2] Supporting Documentation from Official Microsoft Download Center」にある「imageMso.txt」ファイルを元にOffice 2013の画面をキャプチャーしたもので、Office 2013のすべてのコントロールIDを網羅しているわけではありません。
- 当一覧のアイコンを素材として利用したり、アプリケーションに組み込んで使うことはできません。
- 当サイト上に掲載されている情報によって生じた、いかなる損害についても管理者は一切の責任を負いかねます。
















この記事へのコメントはありません。