Determines if the ribbon is minimized.
Usage
Set_Property(OLECtrlEntID, "OLE.Minimized", Boolean)
Values
[True | False]
Default: False
Remarks
The Minimized property establishes whether or not the entire ribbon is visible or just the tab strip. By default, this property is False, which means the entire ribbon is visible and takes up real estate on the form. When you set this to True, then only the tab area and above is visible. When minimized, the user can still use the entire ribbon control, but they have to click on a tab for the groups to appear, similar to a popup menu.
Note: When minimized, if the user double-clicks a tab, it will automatically force the ribbon back to its normal (non-minimized) state.
Example
// Minimize the ribbon Set_Property(@Window:".OLE_RIBBON", "OLE.Minimized", 1)