Sets localized object.

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

Syntax

C#
public static bool SetObject(
	IEntityCollection2 collection,
	IEntityField2 languageIdField,
	params Object[] KeyValues
)
Visual Basic
Public Shared Function SetObject ( 
	collection As IEntityCollection2,
	languageIdField As IEntityField2,
	ParamArray KeyValues As Object()
) As Boolean
Visual C++
public:
static bool SetObject(
	IEntityCollection2^ collection, 
	IEntityField2^ languageIdField, 
	... array<Object^>^ KeyValues
)
F#
static member SetObject : 
        collection : IEntityCollection2 * 
        languageIdField : IEntityField2 * 
        KeyValues : Object[] -> bool 

Parameters

collection
Type: IEntityCollection2
Collection to search/fill
languageIdField
Type: IEntityField2
Language id field
KeyValues
Type: array<System..::..Object>[]()[][]
Key=Value pairs used for setting field values Key [IEntityField2] used to identify the field to set Value [object] used to hold the value to set

Return Value

Type: Boolean
True if set, False if not

See Also