C2025-033 Added a new field and supporting logic to specify if a PageStyle item should be printed for the Child procedure being printed.

This commit is contained in:
2025-05-16 10:52:37 -04:00
parent 59372b23e4
commit 69f8e3f4fc
7 changed files with 34 additions and 1 deletions

View File

@@ -244,6 +244,16 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _TrimEnding, "@TrimEnding");
}
}
// C2025-033 to specify to print pagestyle item for a specific Child procedure
private LazyLoad<int?> _ChildNum;
public int? ChildNum
{
get
{
return (LazyLoad(ref _ChildNum, "@ChildNum"));
}
}
#endregion
#region Override ToString
public override string ToString()