cadencii.MARGINS.MARGINS C# (CSharp) Method

MARGINS() public method

public MARGINS ( int Left, int Right, int Top, int Bottom ) : System
Left int
Right int
Top int
Bottom int
return System
        public MARGINS( int Left, int Right, int Top, int Bottom ) {
            cxLeftWidth = Left;
            cxRightWidth = Right;
            cyTopHeight = Top;
            cyBottomHeight = Bottom;
        }
MARGINS