Rectangle.FromLTRB(Int32, Int32, Int32, Int32) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Crea una struttura Rectangle con le posizioni del bordo specificate.
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
Parametri
Restituisce
Nuovo oggetto Rectangle creato da questo metodo.
Esempio
Nell'esempio di codice seguente viene illustrato come creare un rettangolo usando il FromLTRB metodo . Questo esempio è progettato per essere usato con Windows Form. Incollare questo codice in una maschera e chiamare il CreateARectangleFromLTRB
metodo quando si gestisce l'evento del Paint modulo, passando e
come 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
Commenti
Questo metodo crea un oggetto Rectangle con gli angoli superiore sinistro e inferiore destro specificati.