Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

MenuItem.SetBold

Sets menu item to use bold font style.

Component Version macOS Windows Linux Server iOS SDK
Menu 5.1 ✅ Yes ✅ Yes ❌ No ❌ No ❌ No
MBS( "MenuItem.SetBold"; item; flag )   More

Parameters

Parameter Description Example
item The reference to the menu item. Please create one with MenuItem.CreateMenuItem or MenuItem.CreateSeparator. $item
flag The bold state. Pass 1 to use bold font or 0 to disable. 1

Result

Returns OK or error.

Description

Sets menu item to use bold font style.

Examples

Create bold menu item:

# create menu
Set Variable [ $menu ; Value: MBS("Menu.CreateMenu") ]
# create menu item...
Set Variable [ $item ; Value: MBS("MenuItem.CreateMenuItem"; "Bold item") ]
Set Variable [ $r ; Value: MBS("MenuItem.SetBold"; $item; 1) ]
Set Variable [ $r ; Value: MBS("Menu.AddItem"; $menu; $item) ]

See also

Example Databases

Blog Entries

This function is free to use.

Created 11st May 2015, last changed 25th November 2019


MenuItem.SetBackColor - MenuItem.SetEnabled