Esempio n. 1
0
        /// <summary>Execute Label/GoSub Command Loaded in Current AHK Session</summary>
        /// <param name="GoSubName">AHK Script Label to Execute</param>
        /// <param name="CheckIfExistsFirst">Option to Confirm Label Exists in Memory Before Attempting To Execute</param>
        public static void GoSub(string GoSubName, bool CheckIfExistsFirst = false)
        {
            _AHK ahk = new _AHK();

            ahk.GoSub(GoSubName, CheckIfExistsFirst);
        }