Is it possible to define a DesignerProperty FieldType as Double instead of Int?
If I define the type as Double, this property is no longer used in the designer.
I could work around the problem by adding a property that defines Int or Decimal, but I'm not sure if that's the right way to do it.
Dim stepMode As String = Props.Get("StepMode")
Dim stepInt As Int = Props.Get("Step")
If stepMode = "decimal" Then
StepIncremental = stepInt / 10.0 ' 1 becomes 0.1
Else
StepIncremental = stepInt ' 1 stay 1
End If