Gets or sets value indicating whether the Ribbon
Introduced: X16.
public bool IsScalable { get; set; }
Public Property IsScalable() As Boolean
The following example sets the value of the Is
TXTextControl.Windows.Forms.Ribbon.RibbonButton ribbonButton =
new TXTextControl.Windows.Forms.Ribbon.RibbonButton();
ribbonButton.Description = "My RibbonButton";
ribbonButton.DisplayMode =
TXTextControl.Windows.Forms.Ribbon.IconTextRelation.LargeIconLabeled;
ribbonButton.IsAddToQuickAccessToolbarEnabled = true;
ribbonButton.IsScalable = false;
Dim ribbonButton As TXTextControl.Windows.Forms.Ribbon.RibbonButton =
New TXTextControl.Windows.Forms.Ribbon.RibbonButton()
ribbonButton.Description = "My RibbonButton"
ribbonButton.DisplayMode =
TXTextControl.Windows.Forms.Ribbon.IconTextRelation.LargeIconLabeled
ribbonButton.IsAddToQuickAccessToolbarEnabled = true
ribbonButton.IsScalable = false