GetHandle() 공개 메소드

public GetHandle ( ) : IntPtr
리턴 System.IntPtr
예제 #1
0
파일: hpdf.cs 프로젝트: adminchen/papercrop
        public HPdfPage InsertPage(HPdfPage page)
        {
            IntPtr hpage;

            hpage = HPDF_InsertPage(hpdf, page.GetHandle());
            return new HPdfPage(hpage);
        }