UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
SNumericPropertyValue.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
8
9
10namespace UE::PropertyViewer
11{
12
13class INotifyHook;
14
17{
18public:
20
21public:
26
27 ADVANCEDWIDGETS_API void Construct(const FArguments& InArgs);
28
30 void OnEndSliderMovement_uint64(uint64 Value);
31 void OnEndSliderMovement_int64(int64 Value);
32 void OnEndSliderMovement_double(double Value);
33 uint64 GetCurrentValue_uint64() const;
34 int64 GetCurrentValue_int64() const;
35 double GetCurrentValue_double() const;
36 void OnValueChanged_uint64(uint64 Value);
37 void OnValueChanged_int64(int64 Value);
38 void OnValueChanged_double(double Value);
39 void OnValueCommitted_uint64(uint64 Value, ETextCommit::Type CommitInfo);
40 void OnValueCommitted_int64(int64 Value, ETextCommit::Type CommitInfo);
41 void OnValueCommitted_double(double Value, ETextCommit::Type CommitInfo);
42
44 FPropertyPath Path;
45 INotifyHook* NotifyHook = nullptr;
46};
47
48} //namespace
FPlatformTypes::int64 int64
A 64-bit signed integer.
Definition Platform.h:1127
FPlatformTypes::uint64 uint64
A 64-bit unsigned integer.
Definition Platform.h:1117
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define SLATE_END_ARGS()
Definition DeclarativeSyntaxSupport.h:116
Definition SCompoundWidget.h:22
Definition SharedPointer.h:692
Definition INotifyHook.h:13
Definition SNumericPropertyValue.h:17
ADVANCEDWIDGETS_API void Construct(const FArguments &InArgs)
Definition SNumericPropertyValue.cpp:25
SLATE_BEGIN_ARGS(SNumericPropertyValue)
Definition SNumericPropertyValue.h:22
static ADVANCEDWIDGETS_API TSharedPtr< SWidget > CreateInstance(const FPropertyValueFactory::FGenerateArgs Args)
Definition SNumericPropertyValue.cpp:17
SLATE_ARGUMENT(INotifyHook *, NotifyHook)
Definition SlateEnums.h:289
Definition FieldIconFinder.cpp:16
Definition PropertyPath.h:27