バージョン

SizingMode プロパティ (MaskedEditorTool)

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

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

使用例
' Create MaskedEditorTool 
Dim maskedEditorTool As New MaskedEditorTool() 
maskedEditorTool.Id = "maskedEditor" 
maskedEditorTool.Caption = "maskedEditor" 

Debug.Write("maskedEditorTool.SizingMode" + maskedEditorTool.SizingMode)
// Create MaskedEditorTool
MaskedEditorTool maskedEditorTool = new MaskedEditorTool();
maskedEditorTool.Id = "maskedEditor";
maskedEditorTool.Caption = "maskedEditor";

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