2019-07-15 15:09:48 +02:00

32 lines
1.2 KiB
VB.net

Imports DigitalData.Modules.Config.ConfigAttributes
Public Class ClassConfig
<ConnectionString>
Public Property ConnectionString As String = ""
Public Property LogErrorsOnly As Boolean = True
Public Property HotkeyFunctionKey As String = "strg"
Public Property HotkeySearchKey As String = "f"
Public Property LoadDocumentView As Boolean = False
Public Property ViewerWindowX As Integer = 0
Public Property ViewerWindowY As Integer = 0
Public Property ViewerWindowWidth As Integer = 1024
Public Property ViewerWindowHeight As Integer = 786
Public Property MatchWindowX As Integer = 0
Public Property MatchWindowY As Integer = 0
Public Property MatchWindowWidth As Integer = 1024
Public Property MatchWindowHeight As Integer = 786
Public Property ResultDocWindowX As Integer = 0
Public Property ResultDocWindowY As Integer = 0
Public Property ResultDocWindowWidth As Integer = 1024
Public Property ResultDocWindowHeight As Integer = 786
Public Property ResultDataWindowX As Integer = 0
Public Property ResultDataWindowY As Integer = 0
Public Property ResultDataWindowWidth As Integer = 1024
Public Property ResultDataWindowHeight As Integer = 786
End Class