Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
UIString is the core renderable entity for all data that is presented by the UI. UIStrings are divided into one
or more UIStringNodes, where each node corresponds to either normal text or markup data. Markup data is defined
as text that will be replaced by some data retrieved from a data store, referenced by DataStoreName:PropertyName.
Markup can change the current style:
Core.Object | +-- Engine.UIRoot | +-- Engine.UIString
UIEditboxString, UIListString, UIPreviewString
Constants Summary |
---|
Inherited Contants from Core.Object |
---|
DegToRad, INDEX_NONE, MaxInt, Pi, RadToDeg |
Variables Summary | |
---|---|
bool | bAdjustStringScale |
array<pointer> | Nodes |
Vector2D | StringExtent |
Vector2D | StringScale |
UICombinedStyleData | StringStyleData |
Inherited Variables from Engine.UIRoot |
---|
CurrentMenuState, ModifierStack |
Inherited Variables from Core.Object |
---|
Class, HashNext, HashOuterNext, Linker, LinkerIndex, Name, NetIndex, ObjectArchetype, ObjectFlags, ObjectInternalInteger, Outer, StateFrame, VfTableObject |
Enumerations Summary |
---|
Inherited Enumerations from Core.Object |
---|
EAxis, EInputEvent, EInterpCurveMode, EInterpMethodType, ETickingGroup |
Structures Summary |
---|
Functions Summary | ||
---|---|---|
![]() | bool | ContainsMarkup () con) |
![]() | GetAutoScaleValue (Vector2D BoundingRegionSize, Vector2D StringSize, out Vector2D out_AutoScalePercent ) con) | |
![]() | string | GetValue (optional bool bReturnProcessedText=true ) con) |
![]() | bool | SetValue (string InputString, bool bIgnoreMarkup) |
Variables Detail |
---|
The text nodes contained by this UIString. Each text node corresponds to a single atomically renderable element, such as a string of text, an inline image (like a button icon), etc.
the width and height of the entire string
Currently applied string scaling
The default style that will be used for initializing the styles for all nodes contained by this string. Initialized using the owning widget's style, then modified by any per-widget style customizations enabled for the widget.
Functions Detail |
---|
@return TRUE if this string's value contains markup text
Retrieves the configured auto-scale percentage.
@param BoundingRegionSize the bounding region to use for determining autoscale factor (only relevant for certain auto-scale modes).
@param StringSize the size of the string, unwrapped and non-scaled; (only relevant for certain auto-scale modes).
@param out_AutoScalePercent receives the autoscale percent value.
Returns the complete text value contained by this UIString, in either the processed or unprocessed state.
@param bReturnProcessedText Determines whether the processed or raw version of the value string is returned. The raw value will contain any markup; the processed string will be text only. Any image tokens are converted to their text counterpart.
@return the complete text value contained by this UIString, in either the processed or unprocessed state.
Parses a string containing optional markup (such as tokens and inline images) and stores the result in Nodes.
@param InputString A string containing optional markup.
@param bIgnoreMarkup if TRUE, does not attempt to process any markup and only one UITextNode is created
@return TRUE if the string was successfully parsed into the Nodes array.
Defaultproperties |
---|
defaultproperties { Name="Default__UIString" ObjectArchetype=UIRoot'Engine.Default__UIRoot' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |