21 lines
598 B
VB.net
21 lines
598 B
VB.net
Imports DigitalData.GUIs.ClientSuite.ClassControlLocalization
|
|
|
|
Namespace ControlProperties
|
|
Public Class ClassMultiInputProperties
|
|
Inherits ClassInputProperties
|
|
|
|
Private _static_list As String
|
|
|
|
<LocalizedDescription("desc_staticlist")>
|
|
<LocalizedCategory("category_data")>
|
|
Public Property StaticList As StaticList
|
|
Get
|
|
Return New StaticList(_static_list)
|
|
End Get
|
|
Set(value As StaticList)
|
|
_static_list = value?.Value
|
|
End Set
|
|
End Property
|
|
End Class
|
|
End Namespace
|