AppMain.MainForm.SetAppSettings C# (CSharp) Method

SetAppSettings() private method

アプリの設定をデフォルト設定にする。 設定ファイルがなかった場合に呼ばれる。
private SetAppSettings ( ) : void
return void
		private void SetAppSettings()
		{
			this.appSettings.loadForm.skipLength   = "0";
			this.appSettings.loadForm.readLength   = "1024";
			this.appSettings.loadForm.removeSilent = false;
			this.appSettings.loadForm.threshold    = "0";
			this.appSettings.loadForm.relative     = false;

			this.appSettings.loadForm.useReference = false;
			this.appSettings.loadForm.isNormalized = false;
			this.appSettings.loadForm.type         = 0;

			this.appSettings.loadForm.skipLengthRef   = "0";
			this.appSettings.loadForm.removeSilentRef = false;
			this.appSettings.loadForm.thresholdRef    = "0";
			this.appSettings.loadForm.relativeRef     = false;
		}//SetAppSettings