Skip to main content

Font.Name property

Table of contents
  1. Syntax
  2. Remarks
  3. Examples

Returns or sets a Variant value that represents the name of the object.

Syntax

expression.Name

expression A variable that represents a Font object.

Remarks

The name of a Font object is a String.

Examples

The following code sets the font name of range A1:A5 to Calibri.

Range("A1:A5").Font.Name = "Calibri"

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>