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

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

            return(Surface.Lookup(surface, false));
        }
Пример #2
0
 public Surface GetTarget()
 {
     return(Surface.Lookup(NativeMethods.cairo_get_target(handle), false));
 }