/// <summary> /// Gets <see cref="bool"/> indicating whether <see cref="StatusBar"/> is visible or not. /// </summary> /// <param name="page">The <see cref="Page"/></param> /// <returns><see cref="bool"/></returns> public static bool GetIsVisible(Page page) { return(StatusBarExtensions.GetIsVisible(page)); }
/// <summary> /// Sets <see cref="double"/> to StatusBar.BackgroundOpacity /// </summary> /// <param name="page">The <see cref="Page"/></param> /// <param name="value"><see cref="double"/></param> public static void SetBackgroundOpacity(Page page, double value) { StatusBarExtensions.SetBackgroundOpacity(page, value); }
/// <summary> /// Gets <see cref="double"/> from StatusBar.BackgroundOpacity /// </summary> /// <param name="page">The <see cref="Page"/></param> /// <returns><see cref="double"/></returns> public static double GetBackgroundOpacity(Page page) { return(StatusBarExtensions.GetBackgroundOpacity(page)); }
/// <summary> /// Sets Color to StatusBar.ForegroundColor /// </summary> /// <param name="page">The <see cref="Page"/></param> /// <param name="value"> Color</param> public static void SetForegroundColor(Page page, Color value) { StatusBarExtensions.SetForegroundColor(page, value); }
/// <summary> /// Gets Color from StatusBar.ForegroundColor /// </summary> /// <param name="page">The <see cref="Page"/></param> /// <returns>Color</returns> public static Color GetForegroundColor(Page page) { return(StatusBarExtensions.GetForegroundColor(page)); }
/// <summary> /// Sets a <see cref="bool"/> resulting in <see cref="StatusBar"/> becoming visible or invisible. /// </summary> /// <param name="page">The <see cref="Page"/></param> /// <param name="value"><see cref="bool"/></param> public static void SetIsVisible(Page page, bool value) { StatusBarExtensions.SetIsVisible(page, value); }