【修复】修复无法在excel的标题行中定义orientation属性的问题

main
walon 2021-09-01 14:59:39 +08:00
parent e0dda1c83c
commit f8cb21c57f
1 changed files with 5 additions and 0 deletions

View File

@ -411,6 +411,11 @@ namespace Luban.Job.Cfg.Defs
cf.Tags = attrValue;
break;
}
case "orientation":
{
cf.IsRowOrient = DefUtil.ParseOrientation(attrValue);
break;
}
default:
{
throw new Exception($"table:'{table.Name}' file:{file.OriginFile} title:'{f.Name}' attr:'{attrs[i]}' is invalid!");