Added LimitCautionNoteWidthToHLS flag to adjust the width of the cautions and notes when used off of a substep. Added OnlyBulletSameCautionNoteType to control the use of bullets when multiple notes/cautions (of different types) are used.

This commit is contained in:
John Jenko 2015-05-13 17:24:39 +00:00
parent eaca5be98f
commit a5f930391a

View File

@ -2220,6 +2220,27 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _BoldOnlySectionZero, "@BoldOnlySectionZero"); 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<bool> _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<bool> _OnlyBulletSameCautionNoteType;
public bool OnlyBulletSameCautionNoteType
{
get
{
return LazyLoad(ref _OnlyBulletSameCautionNoteType, "@OnlyBulletSameCautionNoteType");
}
}
private LazyLoad<bool> _ImperfectStructure; private LazyLoad<bool> _ImperfectStructure;
public bool ImperfectStructure public bool ImperfectStructure
{ {