Set the property with the specified name. 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
) |
Visual Basic (Declaration) |
---|
Public Sub setProperty ( _
propertyName As String, _
propertyValue As String _
) |
J# |
---|
public void setProperty(
String propertyName,
String propertyValue
) |
JScript |
---|
public function setProperty(
propertyName : String,
propertyValue : String
) |
Parameters
- propertyName
- Type: System..::.String
Property name.
- propertyValue
- Type: System..::.String
Value to be set on the property.
Remarks
Exceptions
Exception | Condition |
---|
System..::.Exception | The instance doesn't represent a single item. |
System..::.ArgumentException | The this.node is read-only. |
See Also