Font.Underline Property

Excel Developer Reference

Returns or sets the type of underline applied to the font. Can be one of the following XlUnderlineStyle constants. Read/write Variant.

Syntax

expression.Underline

expression   A variable that represents a Font object.

Remarks

XlUnderlineStyle can be one of these XlUnderlineStyle constants.
xlUnderlineStyleNone
xlUnderlineStyleSingle
xlUnderlineStyleDouble
xlUnderlineStyleSingleAccounting
xlUnderlineStyleDoubleAccounting

Example

This example sets the font in the active cell on Sheet1 to single underline.

Visual Basic for Applications
  Worksheets("Sheet1").Activate
ActiveCell.Font.Underline = xlUnderlineStyleSingle

See Also