The Face property returns or sets the font face name. Returns a string.
Syntax
object.Face
object.Face = Face
Parameter |
Type |
Description |
Face |
String |
required; face name |
Example 1
This example demonstrates how to return the face of a font.
Debug.Print FontFormat.Face
Example 2
This example demonstrates how to set the face of a font to Arial.
FontFormat.Face = "Arial"
Used by: FontFormat object