'宣言 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);