Esempio n. 1
0
        public override float QueryPropertyFloat(string strPropertyName)
        {
            AFIProperty property = mPropertyManager.GetProperty(strPropertyName);

            if (null != property)
            {
                return(property.QueryFloat());
            }

            return(0.0f);
        }
Esempio n. 2
0
        public override float QueryFloat(string strName)
        {
            AFIProperty xProperty = GetPropertyManager().GetProperty(strName);

            if (null != xProperty)
            {
                return(xProperty.QueryFloat());
            }

            return(0f);
        }