Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FSparseDelegate
Description
Removes a function from this multi-cast delegate's invocation list (performance is O(N)). Note that the order of the delegates may not be preserved!
NOTE: Only call this function from blueprint sparse delegate infrastructure on a resolved generic FScriptDelegate pointer. Generally from C++ you should call Remove() directly.
| Name | __Internal_Remove |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/SparseDelegate.h |
| Include Path | #include "UObject/SparseDelegate.h" |
void __Internal_Remove
(
const UObject * DelegateOwner,
FName DelegateName,
const FScriptDelegate & InDelegate
)
Parameters
| Name | Remarks |
|---|---|
| DelegateOwner | UObject that owns the resolved sparse delegate |
| DelegateName | Name of the resolved sparse delegate |
| InDelegate | Delegate to remove from the sparse delegate |