How to create CHARACTER Style

How do I create a Character style? I see how to create a Paragraph style. I just want to highlight some text, right click, … , Apply Style: “Code”. “Code” should be “Font: Default Monospace, Size: 11, Color: Blue”. I achieved this in Outlook by creating a macro, but for the life of me I can’t figure out how to automate this in any way in Notes.

Subject: toolbar button formula

As an end user, you can do something similar to a macro with a toolbar button. (Application designers could put buttons, links, actions, etc. in their programs.)

Right-click the toolbar and choose Toolbar Preferences. Expand Toolbar and choose Customize. Click New>Button. Give your button a name, and in the forumla window type:

@Command( [TextSetFontFace] ; “Default Monospace” ) ;

@Command( [TextSetFontSize]; “11” );

@Command( [TextSetFontColor] ; [Blue] )

Click OK twice. You can now select your text and use the button to apply that style.

Don’t forget you can also set and use Permanent Pen styles to set a style prior to typing.