ZForge.Configuration.ConfigHelper.Save C# (CSharp) Method

Save() public static method

public static Save ( IConfigSetting s, System f ) : void
s IConfigSetting
f System
return void
        public static void Save(IConfigSetting s, System.Windows.Forms.Form f)
        {
            s["w"].intValue = f.Width;
            s["h"].intValue = f.Height;
            s["l"].intValue = f.Left;
            s["t"].intValue = f.Top;
        }
ConfigHelper