ARCed.Settings.EditorSettings.EditorSettings C# (CSharp) Метод

EditorSettings() публичный Метод

Default constructor
public EditorSettings ( ) : System
Результат System
        public EditorSettings()
        {
            this._maxRecent = 8;
            this.Location = new Point();
            this.Size = new Size(800, 600);
            this.WindowState = FormWindowState.Maximized;
            this.ShowSplash = false; // TODO: Change back to "true"
            this.RecentlyOpened = new List<string>(16);
            this.WindowSkin = new DockPanelSkin();
            this.Scripting = new ScriptSettings();
            this.Charting = new ChartSettings();
            this.SerializedNoteFont = FontHelper.MonoFont;
            this.ImageColorSettings = new ImageColorSettings();
        }