C2019-012: Merge pdfs
This commit is contained in:
@@ -600,6 +600,29 @@ namespace VEPROMS.CSLA.Library
|
||||
OnPropertyChanged("Print_DisableDuplex");
|
||||
}
|
||||
}
|
||||
[Category("Print Settings")]
|
||||
[DisplayName("Print All Not In Merge Pdfs")]
|
||||
[RefreshProperties(RefreshProperties.All)]
|
||||
[Description("Print All Do Not Include In Merge Pdfs")]
|
||||
public bool Print_NotInMergeAll
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["PrintSettings", "NotInMergeAll"];
|
||||
// If there is no parent value, then use the volian default, false. Note that there is no
|
||||
// parent value for this, it is only defined on the procedure.
|
||||
if (s == string.Empty) s = "false";
|
||||
return bool.Parse(s);
|
||||
}
|
||||
set
|
||||
{
|
||||
string s = _Xp["PrintSettings", "NotInMergeAll"]; // get the original value to see if a change
|
||||
bool original = (s==string.Empty) ? false : bool.Parse(s);
|
||||
if (original == value) return;
|
||||
_Xp["PrintSettings", "NotInMergeAll"] = ((bool)value).ToString(); // save selected value
|
||||
OnPropertyChanged("Print_NotInMergeAll");
|
||||
}
|
||||
}
|
||||
// Change Bar Use from 16-bit code:
|
||||
// No Default
|
||||
// Without Change Bars
|
||||
|
Reference in New Issue
Block a user