RectangleF.Implicit(Rectangle to RectangleF) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts the specified Rectangle structure to a RectangleF structure.
public:
static operator System::Drawing::RectangleF(System::Drawing::Rectangle r);
public static implicit operator System.Drawing.RectangleF (System.Drawing.Rectangle r);
static member op_Implicit : System.Drawing.Rectangle -> System.Drawing.RectangleF
Public Shared Widening Operator CType (r As Rectangle) As RectangleF
Parameters
Returns
The RectangleF structure that is converted from the specified Rectangle structure.
Examples
The following code example demonstrates how to use the Implicit, RectangleFand Equality members. This example is designed for use with a Windows Form. Paste this code into a form and call the ConvertRectangleToRectangleF
method when handling the form's Paint event, passing e
as PaintEventArgs.
System.Drawing.RectanglesAndPoints#6