ISLanguageUtils.FormatStr3

Description

This function provides the formatting of simple data types into a predefined string.

Syntax

object.FormatStr3(aFormat, aArg0, aArg1, aArg2)

Part Attribute Type Description
object Required
The object always implements the ISLanguageUtils interface
aFormat In, Required
string
The string where the data will be entered
aArg0 In, Required
object
The first argument to be entered into the string
aArg1 In, Required
object
The second argument to be entered into the string
aArg2 In, Required
object
The third argument to be entered into the string

Return Value

string

Returns the result of formatting of the specified data into a string.

Example

Display the result of formatting of the specified data into a string.

Dim aLanguageUtils
Dim aMessage

Set aLanguageUtils = Profile.LanguageUtils

aMessage =_
  aLanguageUtils.FormatStr3("The current configuration (v. %2:s) has ""%0:s"" UI language and ""%1:s"" DB language",_
  aLanguageUtils.GetUILanguage, aLanguageUtils.GetDBLanguage, Profile.FullVersion)   
   
Profile.MsgBox(aMessage)  
Note:

Version information

Added in v7.9.0