MapRectangleMultiply Operator |
Inflates the object horizontally and vertically by specifying two different factors for each dimension.
The width and height of the rectangle is multiplied by these factors.
Namespace:
Ptv.XServer.Controls.Map
Assembly:
Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax public static MapRectangle operator *(
MapRectangle rect,
Point inflate
)
Public Shared Operator * (
rect As MapRectangle,
inflate As Point
) As MapRectangle
public:
static MapRectangle^ operator *(
MapRectangle^ rect,
Point inflate
)
static let inline (*)
rect : MapRectangle *
inflate : Point : MapRectangle
Parameters
- rect
- Type: Ptv.XServer.Controls.MapMapRectangle
The rectangle which represents the origin the inflate operation. - inflate
- Type: System.WindowsPoint
The X-value specifies the new value of the property Width,
whereas the Y-value specifies the new value of the property Height.
Return Value
Type:
MapRectangleThe object itself is returned, so it can be reused in the same line of code.
See Also