MARGINS (Structures)
Last changed: 66.249.65.229

.
Summary
Used with the DwmExtendFrameIntoClientArea function to extend the Aero composition further into a given window, given the distances from the sides.

C# Signature:

[StructLayout(LayoutKind.Sequential)]
public struct MARGINS
{
    public int leftWidth;
    public int rightWidth;
    public int topHeight;
    public int bottomHeight;
}

VB.NET Signature:

<StructLayout(LayoutKind.Sequential)> _
Public Structure MARGINS
    Public leftWidth As Integer
    Public rightWidth As Integer
    Public topHeight As Integer
    Public bottomHeight As Integer
End Structure

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

TODO

Documentation
MARGINS on MSDN