This commit is contained in:
Jonathan Jenne
2017-06-23 16:11:10 +02:00
parent 0f8f8ddf65
commit f24d8ba4cb
8 changed files with 71 additions and 33 deletions

View File

@@ -332,6 +332,7 @@ Module ClassControlProperties
Inherits InputControlProperties
Private _multiline As Boolean
Private _autosuggest As Boolean
Private _format As String
<LocalizedCategoryAttribute("category_view")>
@@ -355,6 +356,17 @@ Module ClassControlProperties
_multiline = value
End Set
End Property
<LocalizedCategoryAttribute("category_view")>
<LocalizedDescription("desc_autosuggest")>
Public Property AutoSuggest() As Boolean
Get
Return _autosuggest
End Get
Set(value As Boolean)
_autosuggest = value
End Set
End Property
End Class
Public Class ComboBoxProperties
Inherits InputControlProperties