コード例 #1
0
ファイル: Visitor.cs プロジェクト: CecleCW/ProductMan
 public override void VisitText( Text text )
 {
     if( VisitTextDelegate != null )
     {
         VisitTextDelegate( text );
     }
 }
コード例 #2
0
ファイル: Text.cs プロジェクト: CecleCW/ProductMan
        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;
        }
コード例 #3
0
ファイル: Visitor.cs プロジェクト: CecleCW/ProductMan
 public virtual void VisitText( Text text )
 {
 }