Exemplo n.º 1
0
        public override VText Apply(VTextTransform transform)
        {
            foreach (var part in Parts)
            {
                part.Apply(transform);
            }

            return(this);
        }
Exemplo n.º 2
0
 public abstract VText Apply(VTextTransform transform);
Exemplo n.º 3
0
 public override VText Apply(VTextTransform transform)
 {
     transform.DoTransform(this);
     return(this);
 }
Exemplo n.º 4
0
 public override VText Apply(VTextTransform transform)
 {
     return(ToTextSegment().Apply(transform));
 }
Exemplo n.º 5
0
 public override VText Apply(VTextTransform transform)
 {
     return(Text.Apply(transform));
 }