Beispiel #1
0
 public TextSettings(TextSettings Settings)
 {
     if (Settings == null) throw new ArgumentNullException();
     this.UseTable = Settings.UseTable;
     this.Encoding = Settings.Encoding;
     this.CurrentTable = Settings.CurrentTable;
 }
Beispiel #2
0
 public TextSettingsUpdateArgs(TextSettings Settings)
 {
     if (Settings == null)
     {
         throw new ArgumentNullException();
     }
     this.Settings = Settings;
 }
Beispiel #3
0
 public TextSettings(TextSettings Settings)
 {
     if (Settings == null)
     {
         throw new ArgumentNullException();
     }
     this.UseTable     = Settings.UseTable;
     this.Encoding     = Settings.Encoding;
     this.CurrentTable = Settings.CurrentTable;
 }
 public TextSettingsUpdateArgs(TextSettings Settings)
 {
     if (Settings == null) throw new ArgumentNullException();
     this.Settings = Settings;
 }