StrikeThrough Property

 

The StrikeThrough property returns or sets the strikethrough style. Returns a Boolean.

 

Syntax

object.StrikeThrough

object.StrikeThrough = Strike

 

Parameter

Type

Description

Strike

Boolean

required; true to strikethrough text

 

Example 1

This example demonstrates how to return whether or not strikethrough has been applied to a font.

 

Debug.Print FontFormat.StrikeThrough

 

Example 2

This example demonstrates how to strikethrough a font.

 

FontFormat.StrikeThrough = True

 

Used by: FontFormat object