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

private cairo_pdf_surface_create ( string filename, double width, double height ) : IntPtr
filename string
width double
height double
Результат IntPtr
Пример #1
0
 public PdfSurface(string filename, double width, double height)
 {
     surface = NativeMethods.cairo_pdf_surface_create(filename, width, height);
     lock (surfaces.SyncRoot){
         surfaces [surface] = this;
     }
 }
Пример #2
0
 public PdfSurface(string filename, double width, double height)
     : base(NativeMethods.cairo_pdf_surface_create(filename, width, height), true)
 {
 }