PointF.Add Método
Definição
Sobrecargas
| Add(PointF, Size) |
Move um PointF especificado pelo Size especificado.Translates a given PointF by the specified Size. |
| Add(PointF, SizeF) |
Move um determinado PointF por um SizeF especificado.Translates a given PointF by a specified SizeF. |
Add(PointF, Size)
public:
static System::Drawing::PointF Add(System::Drawing::PointF pt, System::Drawing::Size sz);
public static System.Drawing.PointF Add (System.Drawing.PointF pt, System.Drawing.Size sz);
static member Add : System.Drawing.PointF * System.Drawing.Size -> System.Drawing.PointF
Public Shared Function Add (pt As PointF, sz As Size) As PointF
Parâmetros
- sz
- Size
O Size que especifica os números a serem adicionados às coordenadas de pt.The Size that specifies the numbers to add to the coordinates of pt.
Retornos
O PointF movido.The translated PointF.
Comentários
O Add método adiciona o Width do tamanho especificado à coordenada x de PointF e a Height à coordenada y do PointF .The Add method adds the Width of the specified size to the x-coordinate of the PointF and the Height to the y-coordinate of the PointF.
Confira também
Aplica-se a
Add(PointF, SizeF)
public:
static System::Drawing::PointF Add(System::Drawing::PointF pt, System::Drawing::SizeF sz);
public static System.Drawing.PointF Add (System.Drawing.PointF pt, System.Drawing.SizeF sz);
static member Add : System.Drawing.PointF * System.Drawing.SizeF -> System.Drawing.PointF
Public Shared Function Add (pt As PointF, sz As SizeF) As PointF
Parâmetros
- sz
- SizeF
O SizeF que especifica os números a serem adicionados às coordenadas de pt.The SizeF that specifies the numbers to add to the coordinates of pt.
Retornos
O PointF movido.The translated PointF.
Exemplos
O exemplo de código a seguir demonstra como usar o Add método.The following code example demonstrates how to use the Add method. Para executar este exemplo, Cole o código a seguir em um formulário do Windows.To run this example, paste the following code into a Windows Form. Manipule o Paint evento e a chamada do formulário AddExample , passando e como PaintEventArgs .Handle the form's Paint event and call AddExample, passing e as PaintEventArgs.
private void AddExample(PaintEventArgs e)
{
PointF point1 = new PointF(120.5F, 120F);
SizeF size1 = new SizeF(20.5F, 20.5F);
RectangleF rect1 = new RectangleF(point1, size1);
PointF point2 = new PointF(rect1.Right, rect1.Bottom);
if (point2 != PointF.Add(point1, size1))
e.Graphics.DrawString("They are not equal", this.Font, Brushes.Red, rect1);
else
e.Graphics.DrawString("They are equal", this.Font, Brushes.Black, rect1);
}
Private Sub AddExample(ByVal e As PaintEventArgs)
Dim size1 As New SizeF(120.5F, 30.5F)
Dim point1 As New PointF(20.5F, 20F)
Dim rect1 As New RectangleF(point1, size1)
Dim point2 As New PointF(rect1.Right, rect1.Bottom)
If point2 <> PointF.Add(point1, size1) Then
e.Graphics.DrawString("They are not equal", Me.Font, Brushes.Red, rect1)
Else
e.Graphics.DrawString("They are equal", Me.Font, Brushes.Black, rect1)
End If
End Sub
Comentários
O Add método adiciona o Width do tamanho especificado à coordenada x de PointF e a Height à coordenada y do PointF .The Add method adds the Width of the specified size to the x-coordinate of the PointF and the Height to the y-coordinate of the PointF.