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