BlackBerry.Screen.Window.GetIntProperty C# (CSharp) Метод

GetIntProperty() публичный Метод

public GetIntProperty ( System.Property p ) : int
p System.Property
Результат int
        public int GetIntProperty(Property p)
        {
            int result;
            if (screen_get_window_property_iv (handle, p, out result) != 0) {
                throw new Exception ("Unable to read window property " + p);
            }
            return result;
        }