diff --git a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs index 89d26b76..e2325cf9 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs @@ -2220,6 +2220,27 @@ namespace VEPROMS.CSLA.Library return LazyLoad(ref _BoldOnlySectionZero, "@BoldOnlySectionZero"); } } + // used in Ginna's Attachment format + // adjust the width of the Cautions and Note to not exend page the end of the HLS width + // ie, shorten the width if the Caution or Note is off of a sub-step + private LazyLoad _LimitCautionNoteWithToHLS; + public bool LimitCautionNoteWidthToHLS + { + get + { + return LazyLoad(ref _LimitCautionNoteWithToHLS, "@LimitCautionNoteWithToHLS"); + } + } + // Used in Ginn's Attachment format + // only bullet multiple Caution/Note types if they are exactly the same type (ex. CAUTION vs CAUTION1) + private LazyLoad _OnlyBulletSameCautionNoteType; + public bool OnlyBulletSameCautionNoteType + { + get + { + return LazyLoad(ref _OnlyBulletSameCautionNoteType, "@OnlyBulletSameCautionNoteType"); + } + } private LazyLoad _ImperfectStructure; public bool ImperfectStructure {