System.Drawing.Brush.Clone C# (CSharp) 메소드

Clone() 공개 추상적인 메소드

public abstract Clone ( ) : object
리턴 object
        public abstract object Clone();

Usage Example

예제 #1
0
 public Entry(string s, Font font, Brush brush, RectangleF layoutRectangle, StringFormat format)
 {
     this.s               = s;
     this.font            = (Font)font.Clone();      // An owner could possibly call Dispose()!
     this.brush           = (Brush)brush.Clone();
     this.layoutRectangle = layoutRectangle;
     this.format          = (StringFormat)format.Clone();
 }
All Usage Examples Of System.Drawing.Brush::Clone