C2019-012: Merge pdfs

This commit is contained in:
2019-03-12 12:56:58 +00:00
parent cfcf9de352
commit 76bd61b435
13 changed files with 2331 additions and 1242 deletions

View File

@@ -157,6 +157,43 @@ namespace VEPROMS.CSLA.Library
[Description("HrMn Yr-Mt-Dy")]
HHmm__yyyy_MM_dd
}
//
//}
// Merged Pdfs enums
// Page Numbers
/// <summary>
/// The description is used in the drop down list
/// The enum is the format used for page/of for merged pdfs.
/// </summary>
[TypeConverter(typeof(EnumDescConverter))]
public enum MergedPdfsPageOf : int
{
[Description("Page <page> of <of>")]
PageOf = 0,
[Description("Merged Page <page> of <of>")]
MergedPageOf,
[Description("<page>/<of>")]
SlashOnly,
[Description("<set> Page <page> of <of>")]
SetPageOf,
[Description("None")]
None,
[Description("Other")]
Other
}
// Page Number Location
/// <summary>
/// The description is used in the drop down list
/// The enum defines which corner the page number will be printed.
/// </summary>
[TypeConverter(typeof(EnumDescConverter))]
public enum MergedPdfsPageNumCorner : int
{
[Description("Top/Left")]
TopLeft = 0,
[Description("Top/Right")]
TopRight,
[Description("Bottom/Left")]
BottomLeft,
[Description("Bottom/Right")]
BottomRight
}
}