BlackBerry.Screen.Display.GetIntProperty C# (CSharp) Method

GetIntProperty() private method

private GetIntProperty ( System.Property p ) : int
p System.Property
return int
        int GetIntProperty(Property p)
        {
            int result;
            if (screen_get_display_property_iv (handle, p, out result) != 0) {
                throw new Exception ("Unable to read display property " + p);
            }
            return result;
        }