Example #1
0
 public override void VisitText( Text text )
 {
     if( VisitTextDelegate != null )
     {
         VisitTextDelegate( text );
     }
 }
Example #2
0
        public override VisualItem Copy()
        {
            Text text = new Text( _value, _point, _alignment );

            text.Color = Color;
            text.FontFamily = FontFamily;
            text.FontStyle = FontStyle;
            text.FontSizePoints = FontSizePoints;

            return text;
        }
Example #3
0
 public virtual void VisitText( Text text )
 {
 }