コード例 #1
0
ファイル: Sheet.cs プロジェクト: Hymian7/Zebra2
 /// <summary>
 /// Checks, if the PDF File exists using the passed DBManager
 /// </summary>
 public bool FileExists(ZebraDBManager manager)
 {
     try
     {
         manager.Archive.GetFile(this);
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
コード例 #2
0
ファイル: Sheet.cs プロジェクト: Hymian7/Zebra2
 public String DocumentPath(ZebraDBManager manager)
 {
     return(manager.Archive.GetFile(this).FullName);
 }