PointMultiply Operator (Point, Int32) |
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 *(
Point point,
int factor
)
Public Shared Operator * (
point As Point,
factor As Integer
) As Point
static let inline (*)
point : Point *
factor : int : Point
Parameters
- point
- Type: Eto.DrawingPoint
Base point value - factor
- Type: SystemInt32
Value to multiply the X and Y co-ordinates with
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