diff --git a/PROMS/VEPROMS.CSLA.Library/Config/SectionConfig.cs b/PROMS/VEPROMS.CSLA.Library/Config/SectionConfig.cs index 888df42b..d3ea033c 100644 --- a/PROMS/VEPROMS.CSLA.Library/Config/SectionConfig.cs +++ b/PROMS/VEPROMS.CSLA.Library/Config/SectionConfig.cs @@ -491,6 +491,12 @@ namespace VEPROMS.CSLA.Library case FormatColumns.TwoColumn: return SectionColumnMode.Two; break; + case FormatColumns.ThreeColumn: + return SectionColumnMode.Three; + break; + case FormatColumns.FourColumns: + return SectionColumnMode.Four; + break; //default: // return SectionColumnMode.One; // break; @@ -561,6 +567,12 @@ namespace VEPROMS.CSLA.Library case FormatColumns.TwoColumn: rval = (int)SectionColumnMode.Two; break; + case FormatColumns.ThreeColumn: + rval = (int)SectionColumnMode.Three; + break; + case FormatColumns.FourColumns: + rval = (int)SectionColumnMode.Four; + break; default: rval = (int)SectionColumnMode.One; break;