Subtract()

PointF::Subtract(const PointF&, const SizeF&) method

Subtracts the width and height values of the specified SizeF object from the X and Y coordinates values of the specified PointF object correspondingly.

static PointF System::Drawing::PointF::Subtract(const PointF &point, const SizeF &size)

Arguments

ParameterTypeDescription
pointconst PointF&The point to translate
sizeconst SizeF&The SizeF object that specifies the values to subtract from the coordinates values of the point

Return Value

A new PointF object whose X coordinate value is equal to the result of subtraction of the width value of size from the X coordinate value of point and Y coordinate value is equal to the result of subtraction of the height value of size from the Y coordinate value of point

PointF::Subtract(const PointF&, const Size&) method

Subtracts the width and height values of the specified Size object from the X and Y coordinates values of the specified PointF object correspondingly.

static PointF System::Drawing::PointF::Subtract(const PointF &point, const Size &size)

Arguments

ParameterTypeDescription
pointconst PointF&The point to translate
sizeconst Size&The Size object that specifies the values to subtract from the coordinates values of the point

Return Value

A new PointF object whose X coordinate value is equal to the result of subtraction of the width value of size from the X coordinate value of point and Y coordinate value is equal to the result of subtraction of the height value of size from the Y coordinate value of point

See Also