Determines if the user is able to minimize the ribbon via the built-in context menu.

Usage

Set_Property(OLECtrlEntID, "OLE.AllowMinimize", Boolean)

Values

[True | False]

Default: True

Remarks

The AllowMinimze property toggles the user's ability to minimize the ribbon at will. When enabled, the user can right click on the ribbon and select a menu option to minimize or un-minimize it. When disabled, the menu option does not appear. However, the Minimized property always works no matter what the value of this property is.

Example

// Prevent the user from minimizing the ribbon
Set_Property(@Window:".OLE_RIBBON", "OLE.AllowMinimize", 0)
  • No labels