Value :: property - Get property handle
The function turns the value handle into a property handle. In order to apply property handle functions, value handles might be converted into property handles and reverse.
The function does not check, whether the value handle is also a property handle, which may cause critical results when this is not the case.
A property handle refers to a (usually) opened property. Invalid properties may cause an exception.
Implementation overview
- Property handle for value
 Value :: property (  )
- Get property handle
 Value :: property ( vSimplePath )
Implementation details
- 
Property handle for value
 odaba::Property & Value  :: property (  )
 In order to refer to the current value handle as property handle, this function can be called. to list
- 
Get property handle
 odaba::Property & Value  :: property ( odaba::String &vSimplePath )
 The function returns the property handle for the property passed in sPath. - vSimplePath
 - Simple property path
A simple property path may contain an extent or property name but also a sequence of property names separated by dot. A simple property path must not contain parenthesis or preceding dots. 
 to list
- vSimplePath
 - Simple property path

