20 lines
714 B
VB.net
20 lines
714 B
VB.net
Imports DigitalData.Modules.Config.ConfigAttributes
|
|
Imports DigitalData.Modules.Logging
|
|
|
|
Public Class ClassConfig
|
|
' Global Settings (from computerconfig, overridable by userconfig)
|
|
<ConnectionString>
|
|
Public Property ConnectionString As String = ""
|
|
|
|
' Misc Settings
|
|
Public Property DEBUG As Boolean = False
|
|
Public Property FormsDesign As String = "Office 2016 Colorful"
|
|
|
|
Public Property DocumentViewerSplitterWidth As Integer = 0
|
|
Public Property TreeListSplitterWidth As Integer = 0
|
|
Public Property DocumentSearchSplitterWidth As Integer = 0
|
|
Public Property DocumentViewerShown As Boolean = True
|
|
Public Property Viewer_ForceTemporaryMode As Boolean = False
|
|
|
|
End Class
|