Exemple #1
0
    protected override void HelpBox(string caption)
    {
        string str = caption;

        if (caption == "" || caption == "Script")
        {
            str = FXMakerTooltip.GetHsEditor_NcAddForce("");
        }
        base.HelpBox(str);
    }
Exemple #2
0
    protected override void HelpBox(string caption)
    {
        string keyword = caption;
        int    index   = caption.IndexOf('\n');

        if (0 <= index)
        {
            keyword = caption.Substring(0, index);
        }
        base.HelpBox(FXMakerTooltip.GetHsEditor_NcAddForce(keyword));
    }