Navigation
API > API/Runtime > API/Runtime/ApplicationCore > API/Runtime/ApplicationCore/GenericPlatform > API/Runtime/ApplicationCore/GenericPlatform/Accessibility
References
| Module | ApplicationCore |
| Header | /Engine/Source/Runtime/ApplicationCore/Public/GenericPlatform/Accessibility/GenericAccessibleInterfaces.h |
| Include | #include "GenericPlatform/Accessibility/GenericAccessibleInterfaces.h" |
Syntax
class IAccessibleProperty
Remarks
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.
Functions
| Type | Name | Description | |
|---|---|---|---|
| float | GetMaximum () |
The maximum allowed value for this property. This should only be used if GetStepSize is not 0. | |
| float | GetMinimum () |
The minimum allowed value for this property. This should only be used if GetStepSize is not 0. | |
| float | GetStepSize () |
How much the value should increase/decrease when the user attempts to modify the value using UI controls. | |
| FString | GetValue () |
The current value stored by the widget. | |
| FVariant | The current value stored by the widget as a FVariant. | ||
| bool | IsPassword () |
Check if this text is storing password data, indicating that it may need special handling to presenting itself to the user. | |
| bool | IsReadOnly () |
Whether the widget is in read-only mode, which could be different than IsEnabled(). | |
| void | Set the value stored by the widget. |