RemoveAll

Convenience function for static .NET System.Delegate RemoveAll method

Syntax

result = RemoveAll(combinedDelegate,removedDelegate)

Description

result = RemoveAll(combinedDelegate,removedDelegate) removes all instances of removedDelegate from combinedDelegate.

Input Arguments

combinedDelegate

.NET System.Delegate object. The combined delegate from which to remove all instances of the removedDelegate delegate.

removedDelegate

.NET System.Delegate object. The delegate to remove from the combinedDelegate delegate.

Output Arguments

result

.NET System.Delegate object. A new delegate which is the same as the combinedDelegate delegate except without all instances of the removedDelegate delegate.

Alternatives

Use the static RemoveAll method of the System.Delegate class.

Introduced in R2011a