C2018-023 added a “/NW” switch for use with the automated print testing (batch file) to turn off the inclusion of Word attachment text in the metafile

This commit is contained in:
2018-08-02 13:10:40 +00:00
parent 601b4edfb7
commit 63932cd2c9
3 changed files with 26 additions and 14 deletions

View File

@@ -160,5 +160,11 @@ namespace Volian.Base.Library
{ _MyDebugPrint.Show(); }
public static bool IsOpen
{ get { return _MyDebugPrint.IsOpen; } }
private static bool _IncludeWordSecText = true;
public static bool IncludeWordSecText
{
get { return BaselineMetaFile._IncludeWordSecText; }
set { BaselineMetaFile._IncludeWordSecText = value; }
}
}
}