バージョン

SizingMode プロパティ (TextEditorTool)

ツールの現在のサイズを示す列挙体を返します。(読み取り専用)
シンタックス
'宣言
 
Public ReadOnly Property SizingMode As RibbonToolSizingMode
public RibbonToolSizingMode SizingMode {get;}
解説

可能なサイズは次を含みます: ImageOnly、ImageAndTextNormal、ImageAndTextLarge。

使用例
' Create TextEditorTool 
Dim textEditorTool As New TextEditorTool() 
textEditorTool.Id = "textEditor" 
textEditorTool.Caption = "textEditor" 
textEditorTool.KeyTip = "TE" 

Debug.Write("textEditorTool.SizingMode" + textEditorTool.SizingMode)
// Create TextEditorTool
TextEditorTool textEditorTool = new TextEditorTool();
textEditorTool.Id = "textEditor";
textEditorTool.Caption = "textEditor";
textEditorTool.KeyTip = "TE";

Debug.Write("textEditorTool.SizingMode" + textEditorTool.SizingMode);
参照