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

private cairo_fill_extents ( IntPtr cr, double &x1, double &y1, double &x2, double &y2 ) : void
cr System.IntPtr
x1 double
y1 double
x2 double
y2 double
Результат void
Пример #1
0
        public Crow.Rectangle FillExtents()
        {
            double x1, y1, x2, y2;

            NativeMethods.cairo_fill_extents(handle, out x1, out y1, out x2, out y2);
            return(new Crow.Rectangle((int)x1, (int)y1, (int)(x2 - x1), (int)(y2 - y1)));
        }
Пример #2
0
        public Rectangle FillExtents()
        {
            double x1, y1, x2, y2;

            NativeMethods.cairo_fill_extents(state, out x1, out y1, out x2, out y2);
            return(new Rectangle(x1, y1, x2, y2));
        }
Пример #3
0
        public Rectangle FillExtents()
        {
            CheckDisposed();
            double x1, y1, x2, y2;

            NativeMethods.cairo_fill_extents(handle, out x1, out y1, out x2, out y2);
            return(new Rectangle(x1, y1, x2 - x1, y2 - y1));
        }