public GRAPHIN_RESULT ValueUnWrapText(ref SciterValue.VALUE fromValue, out IntPtr phtext) => _valueUnWrapText(ref fromValue, out phtext);
public GRAPHIN_RESULT ValueUnWrapImage(ref SciterValue.VALUE fromValue, out IntPtr phimg) => _valueUnWrapImage(ref fromValue, out phimg);
public GRAPHIN_RESULT ValueUnWrapPath(ref SciterValue.VALUE fromValue, out IntPtr phpath) => _valueUnWrapPath(ref fromValue, out phpath);
public GRAPHIN_RESULT ValueUnWrapGfx(ref SciterValue.VALUE fromValue, out IntPtr phgfx) => _valueUnWrapGfx(ref fromValue, out phgfx);
public GRAPHIN_RESULT ValueWrapText(IntPtr htext, out SciterValue.VALUE toValue) => _valueWrapText(htext, out toValue);
public GRAPHIN_RESULT ValueWrapPath(IntPtr hpath, out SciterValue.VALUE toValue) => _valueWrapPath(hpath, out toValue);
public GRAPHIN_RESULT ValueWrapImage(IntPtr himg, out SciterValue.VALUE toValue) => _valueWrapImage(himg, out toValue);
public GRAPHIN_RESULT ValueWrapGfx(IntPtr hgfx, out SciterValue.VALUE toValue) => _valueWrapGfx(hgfx, out toValue);