GRADIENT_RECT (Structures)
Last changed: -50.241.168.105

.
Summary

C# Definition:

[StructLayout(LayoutKind.Sequential)]

public struct GRADIENT_RECT
{
   public uint UpperLeft;
   public uint LowerRight;

   public GRADIENT_RECT(uint upLeft, uint lowRight)
   {
     UpperLeft = upLeft;
     LowerRight = lowRight;
   }
}

VB Definition:

Structure GRADIENT_RECT
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation