/// <summary>
 /// Sets the specified user preference value
 /// </summary>
 /// <param name="preference">The preference to set</param>
 /// <returns></returns>
 public bool SetUserPreferencesInteger(swUserPreferenceIntegerValue_e preference, int value) => BaseObject.SetUserPreferenceIntegerValue((int)preference, value);
Ejemplo n.º 2
0
 public static void SetSelectionColor(this IPropertyManagerPageSelectionbox box, swUserPreferenceIntegerValue_e color)
 {
     box.SetSelectionColor(true, (int)color);
 }
 /// <summary>
 /// Gets the specified user preference value
 /// </summary>
 /// <param name="preference">The preference to get</param>
 /// <returns></returns>
 public int GetUserPreferencesInteger(swUserPreferenceIntegerValue_e preference) => BaseObject.GetUserPreferenceIntegerValue((int)preference);