Habanero.Faces.Base.CollectionComboBoxMapper.GetPropertyValue C# (CSharp) Method

GetPropertyValue() protected method

Returns the property value of the business object being mapped
protected GetPropertyValue ( ) : object
return object
        protected override object GetPropertyValue()
        {
            if (IsPropertyVirtual())
            {
                return base.GetPropertyValue();
            }
            //Because this is a collection comboBox mapper the value being returned is the underlying value
            // e.g. a Guid Key. The ComboBox will convert a GUID Key into the display value. This is why the
            // BOMapper is not used for this.
            return _businessObject == null
                       ? null
                       : _businessObject.GetPropertyValue(PropertyName);
        }