Settings.Formats Property

<< Click to Display Table of Contents >>

Navigation:  Developer Edition > Visual Basic for Applications (VBA) > Object Model Reference > Settings Object > Properties >

Settings.Formats Property

Previous pageReturn to chapter overviewNext page

Returns or sets a series of options specifying which formatting properties to compare. FormatsFlag constant.

 

Syntax

expression.Formats

expression. A variable representing a Settings object.

 

Remarks

If the ENABLED flag is not set, all other flags are ignored.

 

Example

This example compares font formats.

 

With .Settings

  .Formats = FormatFlag_Enabled + FormatFlag_Font

End With