Set the property with the specified name and language. If property doesn't exist on the item, create it first and then set.

Namespace:  Aras.IOM
Assembly:  IOM (in IOM.dll) Version: 11.0.0.6296

Syntax

C#
public void setProperty(
	string propertyName,
	string propertyValue,
	string lang
)
Visual Basic (Declaration)
Public Sub setProperty ( _
	propertyName As String, _
	propertyValue As String, _
	lang As String _
)
J#
public void setProperty(
	String propertyName,
	String propertyValue,
	String lang
)
JScript
public function setProperty(
	propertyName : String, 
	propertyValue : String, 
	lang : String
)

Parameters

propertyName
Type: System..::.String
Property name.
propertyValue
Type: System..::.String
Value to be set on the property.
lang
Type: System..::.String
Language for which the property needs to be set. If null value is passed, the language of the current session is assumed.

Exceptions

ExceptionCondition
System..::.ExceptionThe instance doesn't represent a single item.
System..::.ArgumentExceptionThe this.node is read-only.

See Also