Exemplo n.º 1
0
 public double CursorToX(ref int cursorPos, QTextLine.Edge edge)
 {
     StackItem[] stack = new StackItem[3];
     stack[1].s_int = cursorPos;
     stack[2].s_int = (int)edge;
     interceptor.Invoke("cursorToX$$", "cursorToX(int*, QTextLine::Edge) const", stack);
     cursorPos = stack[1].s_int;
     return(stack[0].s_double);
 }
Exemplo n.º 2
0
 public double CursorToX(int cursorPos, QTextLine.Edge edge)
 {
     return((double)interceptor.Invoke("cursorToX$$", "cursorToX(int, QTextLine::Edge) const", typeof(double), typeof(int), cursorPos, typeof(QTextLine.Edge), edge));
 }