Skip to main content
A newer version of this page is available. .

ChangeFontBackColorCommand.execute(color) Method

Executes the ChangeFontBackColorCommand command with the specified parameter.

Declaration

execute(
    color: string
): boolean

Parameters

Name Type Description
color string

A string specifying the background font color. May be specified as a color name or a hex color value.

Returns

Type Description
boolean

true if the command has been successfully executed; false if the command execution has failed.

Remarks

Usage example:

richEdit.commands.changeFontBackColorCommand.execute("red");
richEdit.commands.changeFontBackColorCommand.execute("#FF0000");
See Also