Share

Autodesk.AutoCAD.Customization.RibbonRowPanelResizeStyle Enumeration

Description

This enum is used to specify the resize style for RibbonRowPanel.

Visual Basic

Public Enum RibbonRowPanelResizeStyle
  DoNotResize = 4
  NeverHideText = 1
  NeverShrink = 3
  NeverWrap = 2
  None = 0
End Enum

C#

public enum RibbonRowPanelResizeStyle {
  DoNotResize = 4,
  NeverHideText = 1,
  NeverShrink = 3,
  NeverWrap = 2,
  None = 0
}

Members

Members Description
DoNotResize = 4 The items in this ribbon row panel will never resize.
NeverHideText = 1 Don't hide text of the items in the panel.
NeverShrink = 3 Don't make the items in the panel smaller.
NeverWrap = 2 Don't wrap the items in the panel.
None = 0 Use default resizing based on the types of items in the panel.

Was this information helpful?