Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private iMaxLength As Int32 = 5
Public Shadows ReadOnly Property MaxLength() As Integer
Get
Return iMaxLength
End Get
End Property
One more question: I trying to work out how i can embed a custom property of a custom control in Properties window at design time???? or How can i remove a property from Properties window for a control???
Imports System.ComponentModel
<Description("My Description: This is what you see in property window Description"), Browsable(False)> _
Public ReadOnly Property myProperty() As boolean
Get
Return bTest
End Get
End Property
Private iMaxLength As Int32 = 10
<Browsable(False)> _
Public Shadows ReadOnly Property MaxLength() As Integer
Get
Return iMaxLength
End Get
End Property