示例#1
0
        public override bool setText(int x, int y, Visual_Flow_Form form)
        {
            bool textset = false;

            if (contains(x, y))
            {
                textset = true;
                if (Component.Current_Mode != Mode.Expert)
                {
                    form.menuRenameSubchart_Click(null, null);
                }
                return(textset);
            }

            if (this.Successor != null)
            {
                return(this.Successor.setText(x, y, form));
            }

            return(textset);
        }