RectF
struct RectF
Creates a D2D1_RECT_F structure that contains the specified dimensions.
using System.CodeDom.Compiler;
using System.Drawing;
using System.Runtime.CompilerServices;
namespace Windows.Win32.Graphics.GdiPlus
{
[GeneratedCode("Microsoft.Windows.CsWin32", "0.3.106+a37a0b4b70")]
internal struct RectF
{
internal float X;
internal float Y;
internal float Width;
internal float Height;
public static implicit operator RectangleF(RectF rect)
{
return Unsafe.As<RectF, RectangleF>(ref rect);
}
public static implicit operator RectF(RectangleF rectangle)
{
return Unsafe.As<RectangleF, RectF>(ref rectangle);
}
}
}