コード例 #1
0
ファイル: PdfWriterModule.cs プロジェクト: mrdrbob/NFountain
			public PdfConfigurationCommand(string trigger, string desc, string argName, Action<PdfWriterModule, float> action) {
				Trigger = trigger;
				Description = desc;
				_action = action;
				_arg = new FloatCommandArgument(argName);
				_args = new FloatCommandArgument[] { _arg };
			}
コード例 #2
0
 public PdfConfigurationCommand(string trigger, string desc, string argName, Action <PdfWriterModule, float> action)
 {
     Trigger     = trigger;
     Description = desc;
     _action     = action;
     _arg        = new FloatCommandArgument(argName);
     _args       = new FloatCommandArgument[] { _arg };
 }