Returns whether the given string satisfies the given wildcard string.
[Visual Basic 6.0] Function CompareWildCard(
ByVal wildCard As String, _
ByVal Data As String _
) As Boolean
[Visual Basic .NET] Public Function CompareWildCard ( _ ByVal wildCard As String, _ ByVal Data As String _ ) As Boolean
[C#] public bool CompareWildCard ( string wildCard, string Data );
[Java] public Boolean compareWildCard ( String wildCard, String Data ) throws IOException, AutomationException
[C++]
HRESULT CompareWildCard(
BSTR wildCard,
BSTR Data,
VARIANT_BOOL* matched
);
Parameters
wildCard [in]
wildCard is a parameter of type BSTR
Data [in]
Data is a parameter of type BSTR
matched [out, retval]
matched is a parameter of type VARIANT_BOOL