Navigation
API > API/Runtime > API/Runtime/ApplicationCore
An accessible widget that stores an arbitrary value of any type capable of being serialized into a string. Optional overrides add support for slider-like functionality.
| Name | IAccessibleProperty |
| Type | class |
| Header File | /Engine/Source/Runtime/ApplicationCore/Public/GenericPlatform/Accessibility/GenericAccessibleInterfaces.h |
| Include Path | #include "GenericPlatform/Accessibility/GenericAccessibleInterfaces.h" |
Syntax
class IAccessibleProperty
Derived Classes
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual float GetMaximum() |
The maximum allowed value for this property. This should only be used if GetStepSize is not 0. | GenericPlatform/Accessibility/GenericAccessibleInterfaces.h | |
virtual float GetMinimum() |
The minimum allowed value for this property. This should only be used if GetStepSize is not 0. | GenericPlatform/Accessibility/GenericAccessibleInterfaces.h | |
virtual float GetStepSize () |
How much the value should increase/decrease when the user attempts to modify the value using UI controls. | GenericPlatform/Accessibility/GenericAccessibleInterfaces.h | |
FString GetValue () |
The current value stored by the widget. | GenericPlatform/Accessibility/GenericAccessibleInterfaces.h | |
virtual FVariant GetValueAsVariant () |
The current value stored by the widget as a FVariant. | GenericPlatform/Accessibility/GenericAccessibleInterfaces.h | |
virtual bool IsPassword() |
Check if this text is storing password data, indicating that it may need special handling to presenting itself to the user. | GenericPlatform/Accessibility/GenericAccessibleInterfaces.h | |
virtual bool IsReadOnly() |
Whether the widget is in read-only mode, which could be different than IsEnabled(). | GenericPlatform/Accessibility/GenericAccessibleInterfaces.h | |
virtual void SetValue
(
const FString& Value |
Set the value stored by the widget. | GenericPlatform/Accessibility/GenericAccessibleInterfaces.h |