[StructLayout(LayoutKind.Sequential)]
public struct GRADIENT_RECT
{
public uint UpperLeft;
public uint LowerRight;
public GRADIENT_RECT(uint upLeft, uint lowRight)
{
UpperLeft = upLeft;
LowerRight = lowRight;
}
}
<StructLayout(LayoutKind.Sequential)> _
Public Structure GRADIENT_RECT
Public UpperLeft As UInteger
Public LowerRight As UInteger
Public Sub New(ul As UInteger, lr As UInteger)
Me.UpperLeft = ul
Me.LowerRight = lr
End Sub
End Structure
None.
None.