The system button's caption which is only visible when the system button is a tab.

Usage

Set_Property(OLECtrlEntID, "OLE.SystemButtonCaption", Text)

Values

Text can contain anything.

Default: "File"

Remarks

The SystemButtonCaption property gets or sets the text of the application tab. The application tab is only visible when the SystemButtonIsTab is set to True. By default, the application tab will display the text "File", since the application button/tab is a replacement to the File menu of old.

If you want to change the text, simply set this property to the desired text.

Example

// Change the application button into a tab and set it's text to "App"
Set_Property(@Window:".OLE_RIBBON", "OLE.SystemButtonIsTab", 1)
Set_Property(@Window:".OLE_RIBBON", "OLE.SystemButtonCaption", "App")

See Also

SystemButtonIsTab

  • No labels