VB.NET での TextBoxにおいて、入力値を編集して返したい場合
[例:入力スペースをRTRIMして返す]
Public Overrides Property Text() As String
Get
Return Rtrim(MyBase.Text)
End Get
Set(ByVal Value As String)
MyBase.Text = Value
End Set
End Property
[例:入力スペースをRTRIMして返す]
Public Overrides Property Text() As String
Get
Return Rtrim(MyBase.Text)
End Get
Set(ByVal Value As String)
MyBase.Text = Value
End Set
End Property