バージョン

SizingMode プロパティ (ComboEditorTool)

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

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

使用例
' Create ComboEditorTool 
Dim comboEditorTool As New ComboEditorTool() 
comboEditorTool.Id = "comboEditor" 
comboEditorTool.Caption = "comboEditor" 

Debug.Write("comboEditorTool.SizingMode" + comboEditorTool.SizingMode)
// Create ComboEditorTool
ComboEditorTool comboEditorTool = new ComboEditorTool();
comboEditorTool.Id = "comboEditor";
comboEditorTool.Caption = "comboEditor";

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