PointMultiply Operator (Int32, Point) |
Multiplies the X and Y co-ordinates of the specified point with a given factor
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static Point operator *(
int factor,
Point point
)
Public Shared Operator * (
factor As Integer,
point As Point
) As Point
static let inline (*)
factor : int *
point : Point : Point
Parameters
- factor
- Type: SystemInt32
Value to multiply the X and Y co-ordinates with - point
- Type: Eto.DrawingPoint
Base point value
Return Value
Type:
PointA new instance of a point with the product of the X and Y co-ordinates of the
point and specified
factorSee Also