Remove

Convenience function for static .NET System.Delegate Remove method

Syntax

result = Remove(combinedDelegate,removedDelegate)

Description

result = Remove(combinedDelegate,removedDelegate) removes last instance of the removedDelegate delegate from the combinedDelegate delegate.

Input Arguments

combinedDelegate

.NET System.Delegate object. The combined delegate from which to remove 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 the last instance of the removedDelegate delegate.

Alternatives

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

Introduced in R2011a