Added IsTransition, AdjustStepTransitionText and BoldTransitionExceptHLS properties to PlantFormat class for VCSummer data
Added code to utilize BoldTransitionExceptHLS property for VCSummer data Added code to reset MyGaps when changing sections for drawing centerline for VCSummer data Added code to handle Transition Caution and Transiton Note when printing PDF for VCSummer data Added code to handle proper incrementing for lower case roman numeral page numbering for VCSummer data Added code to handle hard new lines in Procedure title for VCSummer data
This commit is contained in:
@@ -4600,6 +4600,14 @@ namespace VEPROMS.CSLA.Library
|
||||
return LazyLoad(ref _UsePreviousStyle, "TabData/@UsePreviousStyle");
|
||||
}
|
||||
}
|
||||
private LazyLoad<bool> _IsTransition;
|
||||
public bool IsTransition
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _IsTransition, "TabData/@IsTransition");
|
||||
}
|
||||
}
|
||||
private LazyLoad<float?> _IdentWidth;
|
||||
public float? IdentWidth
|
||||
{
|
||||
@@ -5135,6 +5143,22 @@ namespace VEPROMS.CSLA.Library
|
||||
return LazyLoad(ref _BoldTransition, "@BoldTransition");
|
||||
}
|
||||
}
|
||||
private LazyLoad<bool> _BoldTransitionExceptHLS;
|
||||
public bool BoldTransitionExceptHLS
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _BoldTransitionExceptHLS, "@BoldTransitionExceptHLS");
|
||||
}
|
||||
}
|
||||
private LazyLoad<bool> _AdjustStepTransitionText;
|
||||
public bool AdjustStepTransitionText
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _AdjustStepTransitionText, "@AdjustStepTransitionText");
|
||||
}
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#region TransType
|
||||
|
Reference in New Issue
Block a user