Share via


BorderArtFormat.Color Property (Publisher)

Returns a ColorFormat object representing the color information for the specified object.

Syntax

expression .Color

expression A variable that represents a BorderArtFormat object.

Example

This example tests the font color of the first story in the active document and tells the user if the font color is black or not.

Sub FontColor() 
 
 If Application.ActiveDocument.Stories(1) _ 
 .TextRange.Font.Color.RGB = RGB(Red:=0, Green:=0, Blue:=0) Then 
 MsgBox "Your font color is black" 
 Else 
 MsgBox "Your font color is not black" 
 End If 
 
End Sub

See Also

Concepts

BorderArtFormat Object Members

BorderArtFormat Object