TranslatableValue Constructor (Boolean, String, String) |
Constructor.
Namespace:
MFiles.VAF.Configuration
Assembly:
MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 21.8.10524.1
Syntaxpublic TranslatableValue(
bool isDefault,
string cultureOrLanguage,
string translatedText
)
Public Sub New (
isDefault As Boolean,
cultureOrLanguage As String,
translatedText As String
)
public:
TranslatableValue(
bool isDefault,
String^ cultureOrLanguage,
String^ translatedText
)
Parameters
- isDefault
- Type: SystemBoolean
Specifies if this text is the default language version of the translatable text. - cultureOrLanguage
- Type: SystemString
The culture name in standard format e.g. 'en-US' or 'fi-FI' or the corresponding three-letter ISO language identifier e.g. 'eng' or 'fin'. - translatedText
- Type: SystemString
The translated text.
See Also