Added MaxWidth property that allows for defining width of PSI data and supports multi-line text (introduced for wstalr)

Adjust top margin for multiline pagelist items (introduced for wstalr)
Support multi-line PSI item, using ‘MaxWidth’ pagelist property (introduced for wstalr)
This commit is contained in:
2015-05-06 12:25:57 +00:00
parent 2521041932
commit d6557f578a
3 changed files with 122 additions and 4 deletions

View File

@@ -125,6 +125,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad<E_Justify>(ref _Justify, "@Justify");
}
}
private LazyLoad<int?> _MaxWidth;
public int? MaxWidth
{
get
{
return (LazyLoad(ref _MaxWidth, "@MaxWidth"));
}
}
#endregion
#region Override ToString
public override string ToString()