Rectangle.FromLTRB(Int32, Int32, Int32, Int32) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Belirtilen kenar konumlarıyla bir Rectangle yapı oluşturur.
public:
static System::Drawing::Rectangle FromLTRB(int left, int top, int right, int bottom);
public static System.Drawing.Rectangle FromLTRB (int left, int top, int right, int bottom);
static member FromLTRB : int * int * int * int -> System.Drawing.Rectangle
Public Shared Function FromLTRB (left As Integer, top As Integer, right As Integer, bottom As Integer) As Rectangle
Parametreler
Döndürülenler
Bu yöntemin oluşturduğu yeni Rectangle .
Örnekler
Aşağıdaki kod örneği, yöntemini kullanarak FromLTRB nasıl dikdörtgen oluşturulacağını gösterir. Bu örnek, Bir Windows Formu ile kullanılacak şekilde tasarlanmıştır. Bu kodu bir forma yapıştırın ve formun CreateARectangleFromLTRB
Paint olayını işlerken yöntemini olarak geçirin e
PaintEventArgs.
private:
void CreateARectangleFromLTRB( PaintEventArgs^ e )
{
Rectangle myRectangle = Rectangle::FromLTRB( 40, 40, 140, 240 );
e->Graphics->DrawRectangle( SystemPens::ControlText, myRectangle );
}
private void CreateARectangleFromLTRB(PaintEventArgs e)
{
Rectangle myRectangle = Rectangle.FromLTRB(40, 40, 140, 240);
e.Graphics.DrawRectangle(SystemPens.ControlText, myRectangle);
}
Private Sub CreateARectangleFromLTRB(ByVal e As PaintEventArgs)
Dim myRectangle As Rectangle = Rectangle.FromLTRB(40, 40, 140, 240)
e.Graphics.DrawRectangle(SystemPens.ControlText, myRectangle)
End Sub
Açıklamalar
Bu yöntem, belirtilen sol üst ve sağ alt köşelerle bir Rectangle oluşturur.