Cairo.XcbSurface.FromBitmap C# (CSharp) Метод

FromBitmap() публичный статический Метод

public static FromBitmap ( IntPtr connection, uint bitmap, IntPtr screen, int width, int height ) : XcbSurface
connection System.IntPtr
bitmap uint
screen System.IntPtr
width int
height int
Результат XcbSurface
        public static XcbSurface FromBitmap(IntPtr connection, uint bitmap, IntPtr screen, int width, int height)
        {
            IntPtr ptr = NativeMethods.cairo_xcb_surface_create_for_bitmap (connection, bitmap, screen, width, height);
            return new XcbSurface (ptr, true);
        }