'Declaration Public Shadows Property Name As String
'Usage Dim instance As ElementControl Dim value As String instance.Name = value value = instance.Name
public new string Name {get; set;}
'Declaration Public Shadows Property Name As String
'Usage Dim instance As ElementControl Dim value As String instance.Name = value value = instance.Name
public new string Name {get; set;}
The name of a control must start with a letter and can contain a maximum of 40 characters. It can include numbers and underscore characters, but it cannot include punctuation or spaces. Different controls used on the same form cannot share the same name.
Notes:
|
You cannot change the name of a control at run time.
Note: Changing the name of a control can affect existing code that uses the name. |