editMenu.setOutline

Syntax editMenu.setOutline (setting)

Params setting is a boolean determining if selected text should be outlined (true) or have the outlining removed (false) if it is presently displayed in outline style.

Action Turn outline style on or off for the current text selection, depending on value of setting.

Returns True if a change was made, false otherwise.

Examples edit (@examples.styleTest)

   » true

Select any line that is not outlined. Now type and execute:
editMenu.setOutline (true)


   » true

Notice that the text is now outlined. Type and execute:
editMenu.undo ()


   » true

Text returns to its original style.

edit (@examples.styleTest)

   » true

Select the last line in the document. Now type and execute:
editMenu.setOutline (true)


   » false

This text was already outlined, so no style change took place. Verb returns false to let you know that.

Notes Performs the same action as selecting the Outline command from the Style sub-menu of the Frontier Edit menu.

This verb, like all of the others related to styled text, only works in word processing text windows, not in outlines or tables.

Do not confuse outline style with the Frontier outline datatype.

See Also editMenu.plainText

editMenu.setBold

editMenu.setItalic

editMenu.setShadow

editMenu.setUnderline

editMenu.undo

Discuss