In This Topic
Gets a boolean value indicating whether the two fills are matched.
Syntax
'Declaration
Public Function IsMatch( _
ByVal As Workbook, _
ByRef As Fill _
) As Boolean
'Usage
Dim instance As Fill
Dim workbook As Workbook
Dim other As Fill
Dim value As Boolean
value = instance.IsMatch(workbook, other)
public bool IsMatch(
Workbook ,
ref Fill
)
Parameters
- workbook
- The workbook which holds the fill.
- other
- The compared fill.
Return Value
true
if the displaying of two fills are matched; otherwise, false
.
See Also