アイコン一覧

Office 365アイコン(imageMso)一覧(U)

Office 365のデスクトップ版Officeアプリケーション(WordやExcelなど)のアイコン一覧を作成しました。

アルファベット別見出し

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  

U

U UMLDrawingOptions UMLEvents UMLModels
U U UMLDrawingOptions UMLDrawingOptions UMLEvents UMLEvents UMLModels UMLModels
UMLPackages UMLStereotypes Underline UnderlineColorPicker
UMLPackages UMLPackages UMLStereotypes UMLStereotypes Underline Underline UnderlineColorPicker UnderlineColorPicker
UnderlineDouble UnderlineGallery UnderlineWords Undo
UnderlineDouble UnderlineDouble UnderlineGallery UnderlineGallery UnderlineWords UnderlineWords Undo Undo
UndoButton UndockPeek UndoCompressMedia Unmark
UndoButton UndoButton UndockPeek UndockPeek UndoCompressMedia UndoCompressMedia Unmark Unmark
UnmarkAllForDownload UnmarkSplit UnmergeCells UnpinFromMyGroups
UnmarkAllForDownload UnmarkAllForDownload UnmarkSplit UnmarkSplit UnmergeCells UnmergeCells UnpinFromMyGroups UnpinFromMyGroups
UnreadMenu UpArrow2 UpdateAsScheduled UpdateAsScheduledMenu
UnreadMenu UnreadMenu UpArrow2 UpArrow2 UpdateAsScheduled UpdateAsScheduled UpdateAsScheduledMenu UpdateAsScheduledMenu
UpdateBibliography UpdateEvents UpdateFolder UpdateFolderList
UpdateBibliography UpdateBibliography UpdateEvents UpdateEvents UpdateFolder UpdateFolder UpdateFolderList UpdateFolderList
UpdateIcon UpdateInteractiveIndex UpgradeDocument UpgradeDrawing
UpdateIcon UpdateIcon UpdateInteractiveIndex UpdateInteractiveIndex UpgradeDocument UpgradeDocument UpgradeDrawing UpgradeDrawing
UpgradeOLC UpgradePresentation UpgradeProduct UpgradeWorkbook
UpgradeOLC UpgradeOLC UpgradePresentation UpgradePresentation UpgradeProduct UpgradeProduct UpgradeWorkbook UpgradeWorkbook
UploadAttachmentToOneDrive UploadToMSStream UploadToMSStreamRecording UpOneLevel
UploadAttachmentToOneDrive UploadAttachmentToOneDrive UploadToMSStream UploadToMSStream UploadToMSStreamRecording UploadToMSStreamRecording UpOneLevel UpOneLevel
UsageViewDetailActualCost UsageViewDetailActualWork UsageViewDetailBaselineWork UsageViewDetailCommittedUnits
UsageViewDetailActualCost UsageViewDetailActualCost UsageViewDetailActualWork UsageViewDetailActualWork UsageViewDetailBaselineWork UsageViewDetailBaselineWork UsageViewDetailCommittedUnits UsageViewDetailCommittedUnits
UsageViewDetailCommittedWork UsageViewDetailCost UsageViewDetailCumulativeWork UsageViewDetailOverallocation
UsageViewDetailCommittedWork UsageViewDetailCommittedWork UsageViewDetailCost UsageViewDetailCost UsageViewDetailCumulativeWork UsageViewDetailCumulativeWork UsageViewDetailOverallocation UsageViewDetailOverallocation
UsageViewDetailProposedUnits UsageViewDetailProposedWork UsageViewDetailRemainingAvailability UsageViewDetailsAdd
UsageViewDetailProposedUnits UsageViewDetailProposedUnits UsageViewDetailProposedWork UsageViewDetailProposedWork UsageViewDetailRemainingAvailability UsageViewDetailRemainingAvailability UsageViewDetailsAdd UsageViewDetailsAdd
UsageViewDetailWork UseAccountOnAnotherComputer UserRolesManage UserVoice
UsageViewDetailWork UsageViewDetailWork UseAccountOnAnotherComputer UseAccountOnAnotherComputer UserRolesManage UserRolesManage UserVoice UserVoice
UseVotingButtonsMenu UxContentLibGallery UxTextGallery UxVerticalTextGallery
UseVotingButtonsMenu UseVotingButtonsMenu UxContentLibGallery UxContentLibGallery UxTextGallery UxTextGallery UxVerticalTextGallery UxVerticalTextGallery

アイコンの活用方法

上図の通りアイコンイメージとコントロール 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

注意事項

関連記事

Office 365アイコン(imageMso)一覧(V)前のページ

Office 365アイコン(imageMso)一覧(T)次のページ

関連記事

  1. Office関連

    [Excel 2013]Web関数を使ってマッシュアップ

    以前書いた記事「Excel 2013で追加された「WEBSERVICE…

  2. Office関連

    選択したセルに連続行番号を振るWordマクロ

    Wordでマニュアルを作成するとき等、表の中で連番を振りたいときがよく…

  3. アイコン一覧

    Office 2013 アイコン一覧(A)

    ・Office 2013 アイコン一覧 NUM…

  4. Office関連

    Google Docs APIを使ってGoogle ドキュメントを操作するVBAマクロ

    前回の記事で新しく追加されたGoogle Docs APIを紹介しまし…

  5. Office関連

    代理人アクセスによって予定を追加するOutlookマクロ

    先日久々にmougの質問に回答しました。マクロを使って、Exc…

コメント

  • コメント (0)

  • トラックバックは利用できません。

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

Time limit is exhausted. Please reload CAPTCHA.

※本ページはプロモーションが含まれています。

Translate

最近の記事

アーカイブ

PAGE TOP