FText::AsCurrencyBase

Generate an [FText](API\Runtime\Core\Internationalization\FText) that represents the passed number as currency in the current culture.

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Internationalization/Text.h

Include

#include "Internationalization/Text.h"

Source

/Engine/Source/Runtime/Core/Private/Internationalization/Text.cpp

Syntax

static FText AsCurrencyBase
(
    int64 BaseVal,
    const FString & CurrencyCode,
    const FCulturePtr & TargetCulture,
    int32 ForceDecimalPlaces
)

Remarks

Generate an FText that represents the passed number as currency in the current culture. BaseVal is specified in the smallest fractional value of the currency and will be converted for formatting according to the selected culture. Keep in mind the CurrencyCode is completely independent of the culture it's displayed in (and they do not imply one another). For example: FText::AsCurrencyBase); would return an FText of "6.50" in most English cultures (en_US/en_UK) and "6,50" in Spanish (es_ES) (where is U+20AC)

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Cancel