public static AMRSheetSet OpenSheetSet(string dstPath, bool failIfOpen)
        {
            IAcSmSheetSetMgr ssMgr = new AcSmSheetSetMgr();

            if (System.IO.File.Exists(dstPath))
            {
                AMRSheetSet curDatabase = new AMRSheetSet(ssMgr.OpenDatabase(dstPath, failIfOpen));
                return(curDatabase);
            }
            else
            {
                return(new AMRSheetSet());
            }
        }
 public static IList <AMRSheet> GetSheets(AMRSheetSet sheetSet)
 {
     return(sheetSet.GetSheets());
 }
 public static string FileName(AMRSheetSet sheetSet)
 {
     return(sheetSet.GetFileName());
 }
 public static string SheetSetDesc(AMRSheetSet sheetSet)
 {
     return(sheetSet.GetDesc());
 }
 public static string SheetSetName(AMRSheetSet sheetSet)
 {
     return(sheetSet.Name());
 }