コード例 #1
0
ファイル: hpdf.cs プロジェクト: adminchen/papercrop
        public HPdfAnnotation CreateLinkAnnot(HPdfRect rect, HPdfDestination dst)
        {
            IntPtr hannot;

            hannot = HPDF_Page_CreateLinkAnnot(hpage, rect, dst.GetHandle());
            return new HPdfAnnotation(hannot);
        }
コード例 #2
0
ファイル: hpdf.cs プロジェクト: adminchen/papercrop
 public void SetOpenAction(HPdfDestination open_action)
 {
     if (open_action == null) {
     // ERROR!!
     } else {
     HPDF_SetOpenAction(hpdf, open_action.GetHandle());
     }
 }
コード例 #3
0
ファイル: hpdf.cs プロジェクト: adminchen/papercrop
 public void SetDestination(HPdfDestination dest)
 {
     HPDF_Outline_SetDestination(houtline, dest.GetHandle());
 }