Exemplo n.º 1
0
 /// <summary>
 /// Updates the popup dimensions in the SQLite database. This determines how big the RemindMe popup should be in length and height
 /// </summary>
 /// <param name="dimensions"></param>
 public static void UpdatePopupDimensions(PopupDimensions dimensions)
 {
     if (dimensions != null)
     {
         DLPopupDimensions.UpdatePopupDimensions(dimensions);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Resets the popup dimensions to their default sizes
 /// </summary>
 public static void ResetToDefaults()
 {
     DLPopupDimensions.ResetToDefaults();
 }
Exemplo n.º 3
0
 /// <summary>
 /// Gets the popup dimensions from the SQLite database. This determines how big the RemindMe popup should be in length and height
 /// </summary>
 /// <returns></returns>
 public static PopupDimensions GetPopupDimensions()
 {
     return(DLPopupDimensions.GetPopupDimensions());
 }