ScreenToGif.Util.Native.MARGINS.MARGINS C# (CSharp) 메소드

MARGINS() 공개 메소드

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