Gets item-property by name.
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 11.0.0.6296
Syntax
C# |
---|
public Item getPropertyItem(
string propertyName
) |
Visual Basic (Declaration) |
---|
Public Function getPropertyItem ( _
propertyName As String _
) As Item |
J# |
---|
public Item getPropertyItem(
String propertyName
) |
JScript |
---|
public function getPropertyItem(
propertyName : String
) : Item |
Parameters
- propertyName
- Type: System..::.String
Property name.
Return Value
Found item-property. If by some reason an item can't be returned (e.g. 'this.dom' doesn't have
a property with the specified name or the property contains just id but type of
the item-property is unknown), the method returns null.
NOTE: If specified property name is 'id' then the method returns
this item.
Remarks
Exceptions
Exception | Condition |
---|
System..::.Exception | The instance doesn't represent a single item. |
See Also