Bold Property

Bold returns or sets the bold style. It increases the thickness of the text. It has a Boolean value. The value is 'True', if the text style is bold, or 'False', if the text style is not bold.

Syntax

object.Bold

object. Bold = Bold

Parameter

Type

Description

Bold

Boolean

required

Example 1

This example demonstrates how to return whether or not font is bold.

Debug .Print FontFormat.Bold

Example 2

This example demonstrates how to bold text.

FontFormat.Bold = True

Used by: FontFormat object