Add line width, CLineWidth for lines internal to training format

Add line width, CLineWidth for horizontal & centerline  (WCNTRN)
Use docstyle’s CLineWidth for horizontal & centerlines, if defined )WCNTRN)
This commit is contained in:
2015-06-16 15:36:55 +00:00
parent 66b90b447f
commit 7dbde80f7c
3 changed files with 14 additions and 1 deletions

View File

@@ -237,6 +237,17 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _CenterLineYBottom, "@CenterLineYBottom");
}
}
private LazyLoad<float?> _CLineWidth;
[Category("CenterLine")]
[DisplayName("Line Width")]
[Description("Width of Lines Internal to Boxes")]
public float? CLineWidth
{
get
{
return LazyLoad(ref _CLineWidth, "@CLineWidth");
}
}
#endregion
#region OptionalSectionContent
[Category("Miscellaneous")]