jj 20_01_16

This commit is contained in:
JenneJ
2016-01-20 11:59:00 +01:00
parent 48fe3a4845
commit fb5990948e
8 changed files with 193 additions and 105 deletions

View File

@@ -242,11 +242,11 @@ Module ClassControlProperties
<CategoryAttribute("Ansichtseinstellungen")>
<DescriptionAttribute("Gibt das Format des Textes an.")>
Public Property Format() As EnumFormat
Public Property Format() As EnumFormatOptions
Get
Return _format
End Get
Set(value As EnumFormat)
Set(value As EnumFormatOptions)
_format = value
End Set
End Property
@@ -267,15 +267,15 @@ Module ClassControlProperties
Private _master_data_id As Integer
Private _static_list As String
Private _format As EnumFormat
Private _format As EnumFormatOptions
<CategoryAttribute("Ansichtseinstellungen")>
<DescriptionAttribute("Gibt das Format des Textes an.")>
Public Property Format() As EnumFormat
Public Property Format() As EnumFormatOptions
Get
Return _format
End Get
Set(value As EnumFormat)
Set(value As EnumFormatOptions)
_format = value
End Set
End Property
@@ -304,6 +304,20 @@ Module ClassControlProperties
End Class
Public Class DateTimePickerProperties
Inherits InputControlProperties
Private _default_value As EnumDateTimePickerDefaultValueOptions = EnumDateTimePickerDefaultValueOptions.Empty
<CategoryAttribute("Sonstige Einstellungen")>
<DescriptionAttribute("Gibt den Standardwert dieses Elements an.")>
Public Overloads Property DefaultValue() As EnumDateTimePickerDefaultValueOptions
Get
Return _default_value
End Get
Set(value As EnumDateTimePickerDefaultValueOptions)
_default_value = value
End Set
End Property
End Class
Public Class CheckBoxProperties
Inherits InputControlProperties