Saves the value of the given property for an object.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public void SavePropertyValue(
	BCRepositoryObject anObject,
	string propertyDefIDOrFullName,
	Object propertyValue,
	PropertyDefFlags flags
)
Visual Basic
Public Sub SavePropertyValue ( _
	anObject As BCRepositoryObject, _
	propertyDefIDOrFullName As String, _
	propertyValue As Object, _
	flags As PropertyDefFlags _
)
Visual C++
public:
void SavePropertyValue(
	BCRepositoryObject^ anObject, 
	String^ propertyDefIDOrFullName, 
	Object^ propertyValue, 
	PropertyDefFlags flags
)

Parameters

anObject
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCRepositoryObject
The object for which the property should be saved.
propertyDefIDOrFullName
Type: System..::..String
The property definition FullName property value that describes the property that is saved. Or the property definition ID property value (flags must contain eTreatStringAsObjectID flag).
propertyValue
Type: System..::..Object
The property value.
flags
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..PropertyDefFlags
A bitmask that is a combination of bit flags from PropertyDefFlags.

See Also