24 lines
839 B
VB.net
24 lines
839 B
VB.net
Imports DigitalData.Modules.Config.ConfigAttributes
|
|
|
|
Public Class ClassConfig
|
|
<ConnectionString>
|
|
Public Property ConnectionString As String = ""
|
|
|
|
' Folderwatch
|
|
Public Property FolderWatchStarted As Boolean = False
|
|
Public Property FolderWatchScanStarted As Boolean = False
|
|
|
|
' Index Form Settings
|
|
Public Property FilePreview As Boolean = True
|
|
Public Property SplitterDistanceViewer As Integer = 500
|
|
Public Property ProfilePreselection As Boolean = False
|
|
Public Property ShowIndexResult As Boolean = True
|
|
Public Property DeleteOriginalFile As Boolean = False
|
|
Public Property TopMost As Boolean = True
|
|
|
|
' Misc Settings
|
|
Public Property LogDEBUG As Boolean = True
|
|
Public Property WindreamSearchMaximized As Boolean = False
|
|
Public Property MyFormsDesign As String = ""
|
|
End Class
|