C2019-012: Merge pdfs
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user