Qyoto.QWidget.GetContentsMargins C# (CSharp) Method

GetContentsMargins() public method

public GetContentsMargins ( int &left, int &top, int &right, int &bottom ) : void
left int
top int
right int
bottom int
return void
        public void GetContentsMargins(ref int left, ref int top, ref int right, ref int bottom)
        {
            StackItem[] stack = new StackItem[5];
            stack[1].s_int = left;
            stack[2].s_int = top;
            stack[3].s_int = right;
            stack[4].s_int = bottom;
            interceptor.Invoke("getContentsMargins$$$$", "getContentsMargins(int*, int*, int*, int*) const", stack);
            left = stack[1].s_int;
            top = stack[2].s_int;
            right = stack[3].s_int;
            bottom = stack[4].s_int;
            return;
        }
QWidget