Function to translate a single word or phrase.

Namespace: DataTableEx
Assembly: DataTableEx (in DataTableEx.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public string Translate(
	string Text,
	bool StopAfterFirstFind = true
)
Visual Basic
Public Function Translate ( _
	Text As String, _
	Optional StopAfterFirstFind As Boolean = True _
) As String
Visual C++
public:
String^ Translate(
	String^ Text, 
	bool StopAfterFirstFind = true
)

Parameters

Text
Type: System..::..String
Text to translate.
StopAfterFirstFind (Optional)
Type: System..::..Boolean
Once the word or phrase is found once it the fucntion will stop translating.

Return Value

Translated text.

Remarks