ItemsetPropertyCondition Method (String, String) |
Sets the attribute 'condition' on the specified property.
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 14.0.9.36244
Syntaxpublic void setPropertyCondition(
string propertyName,
string condition
)
Public Sub setPropertyCondition (
propertyName As String,
condition As String
)
public void setPropertyCondition(
String propertyName,
String condition
)
public function setPropertyCondition(
propertyName : String,
condition : String
)
Parameters
- propertyName
- Type: SystemString
Property name - condition
- Type: SystemString
Condition value
ExceptionsException | Condition |
---|
Exception | The instance doesn't represent a single item. |
ArgumentException | The property node is read-only. |
Remarks
If property tag with the specified name doesn't exist in this.node,
the property tag is created after which the attribute 'condition' is set on it.
Note, that if the property tag is created by the method, the property value (i.e. tag's InnerText)
is empty. See "Innovator Programmer's Guide" for more details on condition syntax.
See Also