&& - Operator (multilingual string concatenation)

Concerns

This operator converts the expressions to the left and right of the operator into strings and attaches them to each other in all dialog languages.

Example

Dim V1 As String, V2 As MultiLanguage String, V3 As String

V1 := "TAP.CON"

V2 := ML("EN", "DE", "Konfigurationsexperte", "EN", "Configuration Expert")

V3 := V1 && " " && V2

Result:

V3 contains the value

"TAP. CON Configuration Expert"

in the DE container and

"TAP. CON Configuration Expert"

in the EN container.