12 Mayıs 2017 Cuma

Rectangle Sınıfı

Giriş
Şu satırı dahil ederiz.
using System.Drawing;
Constructor
İmzası şöyle
public Rectangle(
    int x,
    int y,
    int width,
    int height
)
Şöyle yaparız.
Rectangle r = new Rectangle { X = 10, Y = 10, Width = 10, Height = 10 };
IntersectsWith metodu
Şöyle yaparız.
Rectangle r1 = ...;
Rectangle r2 = ...;
bool b = r1.IntersectsWith (r2);
Size Alanı
Şöyle yaparız.
r.Size = new Size (20, 20);

Hiç yorum yok:

Yorum Gönder