CustomPropertyCreateLocalValue Method |
Returns a new property value, searching through the local allowed values of the property.
Namespace:
Aloe.EnterpriseOne.Model.General
Assembly:
Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntaxpublic CustomPropertyValue CreateLocalValue(
CustomPropertyValue value
)
Public Function CreateLocalValue (
value As CustomPropertyValue
) As CustomPropertyValue
public:
CustomPropertyValue^ CreateLocalValue(
CustomPropertyValue^ value
)
member CreateLocalValue :
value : CustomPropertyValue -> CustomPropertyValue
Parameters
- value
- Type: Aloe.EnterpriseOne.Model.GeneralCustomPropertyValue
The value to match.
Return Value
Type:
CustomPropertyValue
The new property value or null if no matching allowed value was found.
RemarksCreateLocalValue(CustomPropertyValue) searches through the local allowed values of the property to find
an appropriate match for the specified value string.
Then, a new property value, based on the allowed value is created and returned.
The method returns null if no matching local allowed value was found.
The method is useful when copying property value from a different property.
See Also