method CalcEdit.DeleteWildFormat (Expression as String)
Deletes an entry from the wild characters expressions collection.

TypeDescription
Expression as String Deletes a wild characters expression being defined by AddWildFormat method.
You have to be carefully when deleting a wild characters expression. For instance, let's say that we defined the wild expression like follows:
With CalcEdit1
        .AddWild ("<b><fgcolor=FF0000>*;</fgcolor></b>")
End With

The sample highlights everything that ends with ';'. Use the following sample to delete the wild characters expression:

With CalcEdit1
        .DeleteWild "*;"
        .Refresh
End With

Use the ClearWildFormats method to clear the all wild characters expressions. The Refresh method should be called after DeleteWildFormat method was called to reflect the latest cha