ScreenToGif.Util.Native.MARGINS.MARGINS C# (CSharp) Method

MARGINS() public method

public MARGINS ( System.Windows.Thickness t ) : System
t System.Windows.Thickness
return System
            public MARGINS(Thickness t)
            {
                Left = (int)t.Left;
                Right = (int)t.Right;
                Top = (int)t.Top;
                Bottom = (int)t.Bottom;
            }
Native.MARGINS