Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UKismetSystemLibrary
Description
Returns whether the timer handle is valid. This does not indicate that there is an active timer that this handle references, but rather that it once referenced a valid timer.
| Name | K2_IsValidTimerHandle |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Kismet/KismetSystemLibrary.h |
| Include Path | #include "Kismet/KismetSystemLibrary.h" |
| Source | /Engine/Source/Runtime/Engine/Private/KismetSystemLibrary.cpp |
UFUNCTION (BlueprintPure,
Meta=(DisplayName="Is Valid Timer Handle", ScriptName="IsValidTimerHandle"),
Category="Utilities|Time")
static bool K2_IsValidTimerHandle
(
FTimerHandle Handle
)
Whether the timer handle is valid.
Parameters
| Name | Remarks |
|---|---|
| Handle | The handle of the timer to check validity of. |