hello friend
how to make property to get multi line for string or text and i want it bee like Text Property Browsable
i check and searched i found this topic tell me to put Browsable(true) and it's not working
here my code
and thanks for helping me
how to make property to get multi line for string or text and i want it bee like Text Property Browsable
i check and searched i found this topic tell me to put Browsable(true) and it's not working
here my code
Code:
Public Class move_text
Inherits Label
WithEvents tmr As New Timer
Private i As Integer
<Browsable(True), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)> ' ~~~~> this what I'm talking about
Public Property Text_View() As String ' ~~~~> this what I'm talking about
Public Sub Start()
tmr.Interval = 100
tmr.Enabled = True
End Sub
Private Sub tmr_tick() Handles tmr.Tick
End Class