PointMultiply Operator (Point, Size) |
Multiplies the specified point with a size
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static Point operator *(
Point point,
Size size
)
Public Shared Operator * (
point As Point,
size As Size
) As Point
static let inline (*)
point : Point *
size : Size : Point
Parameters
- point
- Type: Eto.DrawingPoint
Base point value - size
- Type: Eto.DrawingSize
Size to multiply the X and Y co-ordinates with the Width and Height of the size, respectively
Return Value
Type:
PointA new instance of a point with the product of the specified
point and
sizeSee Also