Determines if the backstage is visible.

Usage

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

Values

[True | False]

Default: False

Remarks

The BackstageVisible property shows or hides the backstage. The backstage is the popup that appears when the user clicks on the system button/tab. In other words, this property allows you to programmatically control the backstage's visibility. For example, you might have an embedded form in your backstage that, when double clicked, closes the backstage automatically. Simply set this property to 1 to show the backstage or to 0 to hide it.

Example

// Show the backstage
Set_Property(@Window:".OLE_RIBBON", "OLE.BackstageVisible", 1)

// Hide the backstage
Set_Property(@Window:".OLE_RIBBON", "OLE.BackstageVisible", 0)

See Also

EmbedWindow

  • No labels