예제 #1
0
        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));
 }