DocCount und anderes

This commit is contained in:
Digital Data - Marlon Schreiber
2019-07-12 11:03:46 +02:00
parent feafd96cb6
commit 6d9f41ea09
20 changed files with 1315 additions and 66 deletions

View File

@@ -160,6 +160,42 @@ Namespace My
Me("frmProfileMatchSize") = value
End Set
End Property
<Global.System.Configuration.UserScopedSettingAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Configuration.DefaultSettingValueAttribute("False")> _
Public Property LoadDocView() As Boolean
Get
Return CType(Me("LoadDocView"),Boolean)
End Get
Set
Me("LoadDocView") = value
End Set
End Property
<Global.System.Configuration.UserScopedSettingAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Configuration.DefaultSettingValueAttribute("0, 0")> _
Public Property frmResultDataSize() As Global.System.Drawing.Size
Get
Return CType(Me("frmResultDataSize"),Global.System.Drawing.Size)
End Get
Set
Me("frmResultDataSize") = value
End Set
End Property
<Global.System.Configuration.UserScopedSettingAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Configuration.DefaultSettingValueAttribute("0, 0")> _
Public Property frmResultDataPosition() As Global.System.Drawing.Point
Get
Return CType(Me("frmResultDataPosition"),Global.System.Drawing.Point)
End Get
Set
Me("frmResultDataPosition") = value
End Set
End Property
End Class
End Namespace