F2021-066 Additional work Barakah. Limit font shrinking to font size of 8 and if can’t shrink to that size put out message

This commit is contained in:
2021-11-15 15:11:20 +00:00
parent 5aeac983d3
commit d8983d41d6
2 changed files with 31 additions and 5 deletions

View File

@@ -169,6 +169,14 @@ namespace VEPROMS.CSLA.Library
return (LazyLoad(ref _FontShrinkAftLen, "@FontShrinkAftLen"));
}
}
private LazyLoad<string> _FontTooSmallMsg; // F2021-066 message if can't shrink enough
public string FontTooSmallMsg
{
get
{
return LazyLoad(ref _FontTooSmallMsg, "@FontTooSmallMsg");
}
}
#endregion
#region Override ToString
public override string ToString()