Gets localized text.

Namespace: MonoSoftware.MonoX.Utilities
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static string GetText(
	IEntityCollection2 collection,
	IEntityField2 textField,
	IEntityField2 languageIdField
)
Visual Basic
Public Shared Function GetText ( 
	collection As IEntityCollection2,
	textField As IEntityField2,
	languageIdField As IEntityField2
) As String
Visual C++
public:
static String^ GetText(
	IEntityCollection2^ collection, 
	IEntityField2^ textField, 
	IEntityField2^ languageIdField
)
F#
static member GetText : 
        collection : IEntityCollection2 * 
        textField : IEntityField2 * 
        languageIdField : IEntityField2 -> string 

Parameters

collection
Type: IEntityCollection2
Collection to search/fill
textField
Type: IEntityField2
Text field
languageIdField
Type: IEntityField2
Language id field

Return Value

Type: String
Requested field value (string)

See Also