This commit is contained in:
@@ -196,19 +196,19 @@ namespace VEPROMS.CSLA.Library
|
||||
}
|
||||
#endregion
|
||||
#region FormatCategory
|
||||
[TypeConverter(typeof(EnumDescConverter))]
|
||||
public enum FormatColumns : int
|
||||
{
|
||||
Default = 0,
|
||||
[Description("Single Column")]
|
||||
OneColumn,
|
||||
[Description("Dual Column")]
|
||||
TwoColumn,
|
||||
[Description("Triple Column")]
|
||||
ThreeColumn,
|
||||
[Description("Quad Column")]
|
||||
FourColumns
|
||||
}
|
||||
//[TypeConverter(typeof(EnumDescConverter))]
|
||||
//public enum FormatColumns : int
|
||||
//{
|
||||
// Default = 0,
|
||||
// [Description("Single Column")]
|
||||
// OneColumn,
|
||||
// [Description("Dual Column")]
|
||||
// TwoColumn,
|
||||
// [Description("Triple Column")]
|
||||
// ThreeColumn,
|
||||
// [Description("Quad Column")]
|
||||
// FourColumns
|
||||
//}
|
||||
[Category("General")]
|
||||
[DisplayName("Default Column Mode")]
|
||||
[RefreshProperties(RefreshProperties.All)]
|
||||
@@ -286,12 +286,12 @@ namespace VEPROMS.CSLA.Library
|
||||
OnPropertyChanged("Print_NumCopies");
|
||||
}
|
||||
}
|
||||
public enum PrintPagination : int
|
||||
{
|
||||
Free = 0, Fixed,
|
||||
[Description("Automatic")]
|
||||
Auto
|
||||
}
|
||||
//public enum PrintPagination : int
|
||||
//{
|
||||
// Free = 0, Fixed,
|
||||
// [Description("Automatic")]
|
||||
// Auto
|
||||
//}
|
||||
[Category("Print Settings")]
|
||||
[DisplayName("Pagination")]
|
||||
[RefreshProperties(RefreshProperties.All)]
|
||||
@@ -329,13 +329,13 @@ namespace VEPROMS.CSLA.Library
|
||||
OnPropertyChanged("Print_Pagination");
|
||||
}
|
||||
}
|
||||
[TypeConverter(typeof(EnumDescConverter))]
|
||||
public enum PrintWatermark : int
|
||||
{
|
||||
None = 0, Reference, Draft, Master, Sample,
|
||||
[Description("Information Only")]
|
||||
InformationOnly
|
||||
}
|
||||
//[TypeConverter(typeof(EnumDescConverter))]
|
||||
//public enum PrintWatermark : int
|
||||
//{
|
||||
// None = 0, Reference, Draft, Master, Sample,
|
||||
// [Description("Information Only")]
|
||||
// InformationOnly
|
||||
//}
|
||||
[Category("Print Settings")]
|
||||
[DisplayName("Watermark")]
|
||||
[RefreshProperties(RefreshProperties.All)]
|
||||
@@ -415,18 +415,18 @@ namespace VEPROMS.CSLA.Library
|
||||
// Without Change Bars
|
||||
// With Default Change Bars
|
||||
// With User Specified Change Bars
|
||||
[TypeConverter(typeof(EnumDescConverter))]
|
||||
public enum PrintChangeBar : int
|
||||
{
|
||||
[Description("Select Before Printing")]
|
||||
SelectBeforePrinting = 0,
|
||||
[Description("Without Change Bars")]
|
||||
Without,
|
||||
[Description("With Default Change Bars")]
|
||||
WithDefault,
|
||||
[Description("Use Custom Change Bars")]
|
||||
WithUserSpecified
|
||||
}
|
||||
//[TypeConverter(typeof(EnumDescConverter))]
|
||||
//public enum PrintChangeBar : int
|
||||
//{
|
||||
// [Description("Select Before Printing")]
|
||||
// SelectBeforePrinting = 0,
|
||||
// [Description("Without Change Bars")]
|
||||
// Without,
|
||||
// [Description("With Default Change Bars")]
|
||||
// WithDefault,
|
||||
// [Description("Use Custom Change Bars")]
|
||||
// WithUserSpecified
|
||||
//}
|
||||
[Category("Format Settings")]
|
||||
[DisplayName("Change Bar")]
|
||||
[RefreshProperties(RefreshProperties.All)]
|
||||
@@ -469,18 +469,18 @@ namespace VEPROMS.CSLA.Library
|
||||
// Outside Box
|
||||
// AER on LEFT, RNO on Right
|
||||
// To the Left of Text
|
||||
[TypeConverter(typeof(EnumDescConverter))]
|
||||
public enum PrintChangeBarLoc : int
|
||||
{
|
||||
[Description("With Text")]
|
||||
WithText = 0,
|
||||
[Description("Outside Box")]
|
||||
OutsideBox,
|
||||
[Description("AER on Left RNO on Right")]
|
||||
AERleftRNOright,
|
||||
[Description("To the Left of the Text")]
|
||||
LeftOfText
|
||||
}
|
||||
//[TypeConverter(typeof(EnumDescConverter))]
|
||||
//public enum PrintChangeBarLoc : int
|
||||
//{
|
||||
// [Description("With Text")]
|
||||
// WithText = 0,
|
||||
// [Description("Outside Box")]
|
||||
// OutsideBox,
|
||||
// [Description("AER on Left RNO on Right")]
|
||||
// AERleftRNOright,
|
||||
// [Description("To the Left of the Text")]
|
||||
// LeftOfText
|
||||
//}
|
||||
[Category("Format Settings")]
|
||||
[DisplayName("Change Bar Position")]
|
||||
[RefreshProperties(RefreshProperties.All)]
|
||||
@@ -525,20 +525,20 @@ namespace VEPROMS.CSLA.Library
|
||||
// Change ID
|
||||
// No Change Bar Message
|
||||
// User Defined Message
|
||||
[TypeConverter(typeof(EnumDescConverter))]
|
||||
public enum PrintChangeBarText : int
|
||||
{
|
||||
[Description("Date and Change ID")]
|
||||
DateChgID = 0,
|
||||
[Description("Revision Number")]
|
||||
RevNum,
|
||||
[Description("Change ID")]
|
||||
ChgID,
|
||||
[Description("No Change Bar Text")]
|
||||
None,
|
||||
[Description("Custom Change Bar Text")]
|
||||
UserDef
|
||||
}
|
||||
//[TypeConverter(typeof(EnumDescConverter))]
|
||||
//public enum PrintChangeBarText : int
|
||||
//{
|
||||
// [Description("Date and Change ID")]
|
||||
// DateChgID = 0,
|
||||
// [Description("Revision Number")]
|
||||
// RevNum,
|
||||
// [Description("Change ID")]
|
||||
// ChgID,
|
||||
// [Description("No Change Bar Text")]
|
||||
// None,
|
||||
// [Description("Custom Change Bar Text")]
|
||||
// UserDef
|
||||
//}
|
||||
[Category("Format Settings")]
|
||||
[DisplayName("Change Bar Text Type")]
|
||||
[RefreshProperties(RefreshProperties.All)]
|
||||
|
Reference in New Issue
Block a user