79 lines
1.7 KiB
VB.net
79 lines
1.7 KiB
VB.net
Public Class Constants
|
|
|
|
#Region "Status Fields"
|
|
Public Enum EnvelopeStatus
|
|
Invalid = 0
|
|
EnvelopeCreated = 1001
|
|
EnvelopeSaved = 1002
|
|
EnvelopeQueued = 1003
|
|
EnvelopeSent = 1004
|
|
EnvelopePartlySigned = 1005
|
|
EnvelopeCompletelySigned = 1006
|
|
EnvelopeArchived = 1007
|
|
EnvelopeTransmittedDMS = 1008
|
|
EnvelopeDeleted = 1009
|
|
DocumentOpened = 2001
|
|
DocumentSigned = 2002
|
|
SignatureConfirmed = 2003
|
|
MessageInvitationSent = 3001 ' Wird von Trigger verwendet
|
|
MessageConfirmationSent = 3002
|
|
MessageDeletionSent = 3003
|
|
End Enum
|
|
|
|
Public Enum ElementStatus
|
|
Created = 0
|
|
End Enum
|
|
|
|
Public Enum DocumentStatus
|
|
Created = 0
|
|
Signed = 1
|
|
End Enum
|
|
|
|
Public Enum ReceiverStatus
|
|
Unsigned = 0
|
|
Signed = 1
|
|
End Enum
|
|
#End Region
|
|
|
|
#Region "Type Fields"
|
|
Public Enum ElementType
|
|
Signature = 1
|
|
End Enum
|
|
|
|
Public Enum ContractType
|
|
Contract = 1
|
|
ReadAndSign = 2
|
|
End Enum
|
|
|
|
Public Enum ColorType
|
|
ReceiverColor1 = 1
|
|
ReceiverColor2 = 2
|
|
ReceiverColor3 = 3
|
|
ReceiverColor4 = 4
|
|
ReceiverColor5 = 5
|
|
ReceiverColor6 = 6
|
|
ReceiverColor7 = 7
|
|
ReceiverColor8 = 8
|
|
ReceiverColor9 = 9
|
|
ReceiverColor10 = 10
|
|
End Enum
|
|
|
|
Public Enum PageOrientation
|
|
Portrait = 0
|
|
Landscape = 1
|
|
End Enum
|
|
#End Region
|
|
|
|
|
|
#Region "Constants"
|
|
|
|
Public Const DATABASE = "DATABASE"
|
|
Public Const LOGCONFIG = "LOGCONFIG"
|
|
Public Const GDPICTURE = "GDPICTURE"
|
|
|
|
Public Const GREEN_300 = "#bbf7d0"
|
|
Public Const RED_300 = "#fecaca"
|
|
Public Const ORANGE_300 = "#fed7aa"
|
|
#End Region
|
|
End Class
|