/// <summary> /// Saving component position and other values. /// </summary> public void SaveSetting() { SettingUtils.SaveSetting(_handler, this, this.Name, "column"); }
/// <summary> /// Saving component position and other values. /// </summary> public void SaveSetting() { //TODO: Save first position values and then other. SettingUtils.SaveSetting(_handler, this, this.Name, "form"); }
/// <summary> /// Get component position and other values. /// </summary> /// <param name="name"></param> public void GetSetting(string name) { SettingUtils.GetSetting(_list, _handler, this, name, "column"); }
/// <summary> /// Get component position and other values. /// </summary> /// <param name="name"></param> public void GetSetting(string name) { SettingUtils.GetSetting(_list, _handler, this, name, "toolbar"); }