System.Windows.Forms.XplatUIX11.XCreatePixmapCursor C# (CSharp) Méthode

XCreatePixmapCursor() static private méthode

static private XCreatePixmapCursor ( IntPtr display, IntPtr source, IntPtr mask, XColor &foreground_color, XColor &background_color, int x_hot, int y_hot ) : IntPtr
display IntPtr
source IntPtr
mask IntPtr
foreground_color XColor
background_color XColor
x_hot int
y_hot int
Résultat IntPtr
		internal static IntPtr XCreatePixmapCursor(IntPtr display, IntPtr source, IntPtr mask, ref XColor foreground_color, ref XColor background_color, int x_hot, int y_hot) {
			DebugHelper.TraceWriteLine ("XCreatePixmapCursor");
			return _XCreatePixmapCursor(display, source, mask, ref foreground_color, ref background_color, x_hot, y_hot);
		}
XplatUIX11