BorderArtFormat.Color Property

Publisher Developer Reference

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.

Visual Basic for Applications
  Sub FontColor()
If Application.ActiveDocument.Stories(1) _
    .TextRange.Font.<strong class="bterm">Color</strong>.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