Removed unnecessary "using" statement

Added enums for Page E_NumberingSequence
This commit is contained in:
Rich 2010-03-25 19:32:02 +00:00
parent 45f0a22be4
commit 42c9f9f46f
2 changed files with 10 additions and 4 deletions

View File

@ -10,7 +10,6 @@ using System.Data.SqlClient;
using System.Xml;
using System.Drawing;
using System.Text.RegularExpressions;
using VEPROMS.CSLA.Library;
namespace VEPROMS.CSLA.Library
{

View File

@ -100,9 +100,16 @@ namespace VEPROMS.CSLA.Library
public enum E_NumberingSequence : uint
{
NoPageNum = 0,
IncludeWoThSteps = 1,
WithinSections = 2,
WithinAccessory = 3
WithSteps = 1,
WithinEachDocStyle = 2,
WithinEachSection = 3,
WithinEachDocStyle1 = 4,
GroupedByPagination = 5,
GroupedByLevel = 6,
WithStepsAndSecondaryPageNumber = 7,
WithStepsAndSecondaryPageNumberGroupedByLevel = 8,
Like6_ButDoesntNeedSubsection = 9,
Like6_ButDoesntNeedSubsection1 = 10
};
public enum E_ContBottomLoc : uint
{