如果指定的标签存在则返回一个非零数字.
TrueOrFalse := IsLabel(LabelName)
如果 LabelName 存在则返回一个非零数字, 否则返回 0(false).
本函数在如 Gosub, 热键定义, 菜单定义和 Gui 等命令指定动态标签时, 有助于避免运行时错误.
if IsLabel("Label") MsgBox, 子程序存在 else MsgBox, 子程序不存在 Label: return
if IsLabel("^#h") MsgBox, 热键存在 else MsgBox, 热键不存在 ^#h::return
if IsLabel("::btw") MsgBox, 热字符串存在 else MsgBox, 热字符串不存在 ::btw::by the way