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

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

private cairo_pdf_surface_create ( string filename, double width, double height ) : IntPtr
filename string
width double
height double
Результат IntPtr
        internal static extern IntPtr cairo_pdf_surface_create(string filename, double width, double height);

Usage Example

Пример #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;
     }
 }
All Usage Examples Of Cairo.NativeMethods::cairo_pdf_surface_create
NativeMethods