コード例 #1
0
ファイル: AutoHotkeyExt.cs プロジェクト: yongzhi444/sharpAHK
        /// <summary>Function Used to Flag Whether AHK Function Uses ErrorLog Value</summary>
        /// <param name="ErrorLogEnabled">Logs ErrorLevel Variables to Log if True, Otherwise Resets to Blank</param>
        /// <param name="ErrorLogText">ErrorMessage From Function To Log if Problem Detected</param>
        public static void ErrorLog_Setup(bool ErrorLogEnabled = true, string ErrorLogText = "")
        {
            _AHK ahk = new _AHK();

            ahk.ErrorLog_Setup(ErrorLogEnabled, ErrorLogText);
        }