Modifiers Property of label

  • Thread starter Thread starter Laurence Nuttall
  • Start date Start date
L

Laurence Nuttall

What is the modifiers property of a label
mean?

I looked in the help, but couldn't find any
explantion for it.

Thanks in Advance,

Laurence Nuttall
Programmer Analyst III
UCLA - Division of Continuing Education
 
Most controls have that property. It tells the designer what visibility the
class-level variable that represents the control in the container will have
(public, private, etc.).

Place a control on a form and look at the declared variable added to the
code file by the designer. It's normally set to Friend. If you change the
Modifiers property to Public, the designer will change the visibility of the
member variable accordingly.
 
Double click on the form designer itself, or right-click on it and select
"View Code".
 
Back
Top