バージョン

HasImage プロパティ (TextEditorTool)

ツールに SmallImage または LargeImage が指定されている場合は True を返し、それ以外は False を返します。(読み取り専用)
シンタックス
'宣言
 
Public ReadOnly Property HasImage As Boolean
public bool HasImage {get;}
使用例
' Create TextEditorTool 
Dim textEditorTool As New TextEditorTool() 
textEditorTool.Id = "textEditor" 
textEditorTool.Caption = "textEditor" 
textEditorTool.KeyTip = "TE" 
textEditorTool.LargeImage = getImageSource("/Images/icons/Ribbon/New_Large.png") 
textEditorTool.SmallImage = getImageSource("/Images/icons/Ribbon/EditCopy.png") 

Debug.Write("textEditorTool.HasImage" + textEditorTool.HasImage) 
...
'Get Image Source 
Private Function getImageSource(ByVal uriString As String) As BitmapImage 
    Dim bmpImage As New BitmapImage() 
    bmpImage.BeginInit() 
    bmpImage.UriSource = New Uri(uriString, UriKind.RelativeOrAbsolute) 
    bmpImage.EndInit() 
    Return bmpImage 
End Function
// Create TextEditorTool
TextEditorTool textEditorTool = new TextEditorTool();
textEditorTool.Id = "textEditor";
textEditorTool.Caption = "textEditor";
textEditorTool.KeyTip = "TE";
textEditorTool.LargeImage = getImageSource("/Images/icons/Ribbon/New_Large.png");
textEditorTool.SmallImage = getImageSource("/Images/icons/Ribbon/EditCopy.png");

Debug.Write("textEditorTool.HasImage" + textEditorTool.HasImage);
...
//Get Image Source
private BitmapImage getImageSource(string uriString)
{
    BitmapImage bmpImage = new BitmapImage();
    bmpImage.BeginInit();
    bmpImage.UriSource = new Uri(uriString, UriKind.RelativeOrAbsolute);
    bmpImage.EndInit();
    return bmpImage;
}
参照