MS Globix Integration

This commit is contained in:
2020-11-16 15:47:30 +01:00
parent 2b8b96a762
commit 83dedb3875
14 changed files with 1722 additions and 9 deletions

View File

@@ -1,10 +1,19 @@
Public Class ClassUIConfig
Public Property FlowForm As New FlowFormConfig
Public Property SearchForm As New SearchFormConfig
Public Property Globix As New GlobixConfig
Public Class FlowFormConfig
Public Property Location As New Point(0, 0)
End Class
Public Class SearchFormConfig
Public Property Location As New Point(0, 0)
End Class
Public Class GlobixConfig
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
End Class
End Class