public override VText Apply(VTextTransform transform)
        {
            foreach (var part in Parts)
            {
                part.Apply(transform);
            }

            return(this);
        }
示例#2
0
 public abstract VText Apply(VTextTransform transform);
示例#3
0
 public override VText Apply(VTextTransform transform)
 {
     transform.DoTransform(this);
     return(this);
 }
示例#4
0
 public override VText Apply(VTextTransform transform)
 {
     return(ToTextSegment().Apply(transform));
 }
示例#5
0
 public override VText Apply(VTextTransform transform)
 {
     return(Text.Apply(transform));
 }