Qyoto.QGraphicsLayout.GetContentsMargins C# (CSharp) Method

GetContentsMargins() private method

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