Translates a
PointD by the negative of a specified size.
Namespace:
EGIS.ShapeFileLib
Assembly:
EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)
Syntax
Visual Basic |
---|
Public Shared Function Subtract ( _
pt As PointD, _
sz As SizeF _
) As PointD |
Visual C++ |
---|
public:
static PointD Subtract(
PointD pt,
SizeF sz
) |
JavaScript |
---|
EGIS.ShapeFileLib.PointD.subtract = function(pt, sz); |
Parameters
- pt
- Type: EGIS.ShapeFileLib..::..PointD
The PointD to translate.
- sz
- Type: System.Drawing..::..SizeF
The SizeF that specifies the numbers to subtract from the coordinates of pt.
Return Value
The translated
PointD.
See Also