Process pagenum transitions for BGE
Added unit number config item to user interface for printing pagelist items for BGE Added Print_UnitNumberForPageList config item BGE: don’t remove ‘.’ At end of tab when making a section/step tab Check for pagenum transitions for resolving transition text (the type BGE has) Added UnitNumber, Level0Big and UseSpecificTransitionModifier flags
This commit is contained in:
@@ -838,6 +838,32 @@ namespace VEPROMS.CSLA.Library
|
||||
}
|
||||
}
|
||||
}
|
||||
[Category("Print Settings")]
|
||||
[DisplayName("UnitNumberForPageList")]
|
||||
[RefreshProperties(RefreshProperties.All)]
|
||||
[Description("For Printing of Unit 1, 2 or 1 & 2 on cover page and in header of other pages")]
|
||||
public string Print_UnitNumberForPageList
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["PrintSettings", "UnitNumberForPageList"];
|
||||
|
||||
// If there is no value, then default to "1", i.e. Unit 1.
|
||||
if (s == string.Empty) s = "1"; // default
|
||||
return s;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (_SaveChangesToDocVersionConfig)
|
||||
{
|
||||
string parval = _Xp.ParentValue("PrintSettings", "UnitNumberForPageList");
|
||||
|
||||
_Xp["PrintSettings", "UnitNumberForPageList"] = value;
|
||||
|
||||
OnPropertyChanged("Print_UnitNumberForPageList");
|
||||
}
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#region Unit // From PROC.INI
|
||||
//MultiUnitCount
|
||||
|
Reference in New Issue
Block a user