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

private cairo_get_group_target ( IntPtr cr ) : IntPtr
cr System.IntPtr
Результат System.IntPtr
Пример #1
0
        public Surface GetGroupTarget()
        {
            CheckDisposed();
            IntPtr surface = NativeMethods.cairo_get_group_target(handle);

            return(Surface.Lookup(surface, false));
        }