newFromTextLabel() public method

public newFromTextLabel ( IoState state, string code, string label ) : IoMessage
state IoState
code string
label string
return IoMessage
Ejemplo n.º 1
0
        public IoObject onDoCStringWithLabel(IoObject target, string code, string label)
        {
            IoMessage msg = new IoMessage();

            msg = msg.clone(this) as IoMessage;
            msg = msg.newFromTextLabel(this, code, label);
            return(msg.localsPerformOn(target, target));
        }
Ejemplo n.º 2
0
 public IoObject onDoCStringWithLabel(IoObject target, string code, string label)
 {
     IoMessage msg = new IoMessage();
     msg = msg.clone(this) as IoMessage;
     msg = msg.newFromTextLabel(this, code, label);
     return msg.localsPerformOn(target, target);
 }