Completed switch statements for column setting to include 3 and 4 columns (code cleanup)
This commit is contained in:
parent
22adceafbd
commit
c31586e7b7
@ -491,6 +491,12 @@ namespace VEPROMS.CSLA.Library
|
|||||||
case FormatColumns.TwoColumn:
|
case FormatColumns.TwoColumn:
|
||||||
return SectionColumnMode.Two;
|
return SectionColumnMode.Two;
|
||||||
break;
|
break;
|
||||||
|
case FormatColumns.ThreeColumn:
|
||||||
|
return SectionColumnMode.Three;
|
||||||
|
break;
|
||||||
|
case FormatColumns.FourColumns:
|
||||||
|
return SectionColumnMode.Four;
|
||||||
|
break;
|
||||||
//default:
|
//default:
|
||||||
// return SectionColumnMode.One;
|
// return SectionColumnMode.One;
|
||||||
// break;
|
// break;
|
||||||
@ -561,6 +567,12 @@ namespace VEPROMS.CSLA.Library
|
|||||||
case FormatColumns.TwoColumn:
|
case FormatColumns.TwoColumn:
|
||||||
rval = (int)SectionColumnMode.Two;
|
rval = (int)SectionColumnMode.Two;
|
||||||
break;
|
break;
|
||||||
|
case FormatColumns.ThreeColumn:
|
||||||
|
rval = (int)SectionColumnMode.Three;
|
||||||
|
break;
|
||||||
|
case FormatColumns.FourColumns:
|
||||||
|
rval = (int)SectionColumnMode.Four;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
rval = (int)SectionColumnMode.One;
|
rval = (int)SectionColumnMode.One;
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user