Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TMulticastScriptDelegate
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void RemoveInternal
(
const UnicastDelegateType& InDelegate |
Removes a function from this multi-cast delegate's invocation list (performance is O(N)). | UObject/ScriptDelegates.h | |
void RemoveInternal
(
const UObject* InObject, |
Removes a function from this multi-cast delegate's invocation list (performance is O(N)). | UObject/ScriptDelegates.h |
RemoveInternal(const UnicastDelegateType &)
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!
| Name | RemoveInternal |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/UObject/ScriptDelegates.h |
| Include Path | #include "UObject/ScriptDelegates.h" |
void RemoveInternal
(
const UnicastDelegateType & InDelegate
) const
Parameters
| Name | Remarks |
|---|---|
| InDelegate | Delegate to remove |
RemoveInternal(const UObject *, FName)
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!
| Name | RemoveInternal |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/UObject/ScriptDelegates.h |
| Include Path | #include "UObject/ScriptDelegates.h" |
void RemoveInternal
(
const UObject * InObject,
FName InFunctionName
) const
Parameters
| Name | Remarks |
|---|---|
| InObject | Object of the delegate to remove |
| InFunctionName | Function name of the delegate to remove |