HasFillColor Method

Build 1501 on 14/Nov/2017  This topic last edited on: 23/Mar/2016, at 12:24

Description

Returns true if the FillColor property has a value.

Syntax

bValue = object.HasFillColor

object

Required. Object name, returned by Text.GetTableCell.

Example

Dim objTableCell = Text.GetTableCell

if objTableCell.HasFillColorName = True then

  msgbox "Fill color is " & objTableCell.FillColorName

else

  msgbox "There's no fill color here."

end if