GetHandle() публичный Метод

public GetHandle ( ) : IntPtr
Результат System.IntPtr
Пример #1
0
        public HPdfAnnotation CreateLinkAnnot(HPdfRect rect, HPdfDestination dst)
        {
            IntPtr hannot;

            hannot = HPDF_Page_CreateLinkAnnot(hpage, rect, dst.GetHandle());
            return new HPdfAnnotation(hannot);
        }
Пример #2
0
 public void SetOpenAction(HPdfDestination open_action)
 {
     if (open_action == null) {
     // ERROR!!
     } else {
     HPDF_SetOpenAction(hpdf, open_action.GetHandle());
     }
 }
Пример #3
0
 public void SetDestination(HPdfDestination dest)
 {
     HPDF_Outline_SetDestination(houtline, dest.GetHandle());
 }