Navigation
API > API/Plugins > API/Plugins/SlateIM
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool SlateIM::SpinBox
(
InNumericType& InOutValue, |
Display a spin box | SlateIM.h | |
bool SlateIM::SpinBox
(
float& InOutValue, |
Display a float-based spin box | SlateIM.h | |
bool SlateIM::SpinBox
(
double& InOutValue, |
Display a double-based spin box | SlateIM.h | |
bool SlateIM::SpinBox
(
int32& InOutValue, |
Display an int32-based spin box | SlateIM.h |
SlateIM::SpinBox(InNumericType &, const FSpinBoxParams< InNumericType > &)
Description
Display a spin box
| Name | SlateIM::SpinBox |
| Type | function |
| Header File | /Engine/Plugins/Experimental/SlateIM/Source/SlateIM/Public/SlateIM.h |
| Include Path | #include "SlateIM.h" |
namespace SlateIM
{
template<typename InNumericType>
bool SlateIM::SpinBox
(
InNumericType & InOutValue,
const FSpinBoxParams < InNumericType > & Params
)
}
Whether the user committed the spin box value this frame
Parameters
| Name | Remarks |
|---|---|
| InOutValue | The current value of the spin box. Can provide a default value. |
| Params | (optional) Additional parameters to create the spinbox |
SlateIM::SpinBox(float &, const FSpinBoxParams< float > &)
Description
Display a float-based spin box
| Name | SlateIM::SpinBox |
| Type | function |
| Header File | /Engine/Plugins/Experimental/SlateIM/Source/SlateIM/Public/SlateIM.h |
| Include Path | #include "SlateIM.h" |
namespace SlateIM
{
template<>
bool SlateIM::SpinBox
(
float & InOutValue,
const FSpinBoxParams < float > & Params
)
}
Whether the user changed or committed the spin box value this frame
Parameters
| Name | Remarks |
|---|---|
| InOutValue | The current value of the spin box. Can provide a default value. |
| Params | Additional parameters to create the spinbox |
SlateIM::SpinBox(double &, const FSpinBoxParams< double > &)
Description
Display a double-based spin box
| Name | SlateIM::SpinBox |
| Type | function |
| Header File | /Engine/Plugins/Experimental/SlateIM/Source/SlateIM/Public/SlateIM.h |
| Include Path | #include "SlateIM.h" |
namespace SlateIM
{
template<>
bool SlateIM::SpinBox
(
double & InOutValue,
const FSpinBoxParams < double > & Params
)
}
Whether the user changed or committed the spin box value this frame
Parameters
| Name | Remarks |
|---|---|
| InOutValue | The current value of the spin box. Can provide a default value. |
| Params | Additional parameters to create the spinbox |
SlateIM::SpinBox(int32 &, const FSpinBoxParams< int32 > &)
Description
Display an int32-based spin box
| Name | SlateIM::SpinBox |
| Type | function |
| Header File | /Engine/Plugins/Experimental/SlateIM/Source/SlateIM/Public/SlateIM.h |
| Include Path | #include "SlateIM.h" |
namespace SlateIM
{
template<>
bool SlateIM::SpinBox
(
int32 & InOutValue,
const FSpinBoxParams < int32 > & Params
)
}
Whether the user changed or committed the spin box value this frame
Parameters
| Name | Remarks |
|---|---|
| InOutValue | The current value of the spin box. Can provide a default value. |
| Params | Additional parameters to create the spinbox |