return (new MText (this.sb));
}
- public MText ins (int pos, MText mt)
+ public MText ins (int pos, ref MText mt)
{
insert (pos, mt, 0, mt.nchars);
return this;
}
- public MText ins (int pos, MText mt, int from, int to)
+ public MText ins (int pos, ref MText mt, int from, int to)
{
insert (pos, mt, from, to);
return this;
nchars -= to - from;
return this;
}
-
-
}
public class MTextProperty