Cairo.NativeMethods.cairo_xcb_surface_set_size C# (CSharp) Метод

cairo_xcb_surface_set_size() приватный Метод

private cairo_xcb_surface_set_size ( IntPtr surface, int width, int height ) : void
surface IntPtr
width int
height int
Результат void
        internal static extern void cairo_xcb_surface_set_size(IntPtr surface, int width, int height);

Usage Example

Пример #1
0
 public void SetSize(int width, int height)
 {
     NativeMethods.cairo_xcb_surface_set_size(Handle, width, height);
 }
NativeMethods