Readonly Property

  • Thread starter Thread starter Alessandro Rossi
  • Start date Start date
A

Alessandro Rossi

Hi,
I will want to find if a control is a type of control that
has the "ReadOnly" property.

Who can help me?

Thank you so much
Alessandro Rossi
 
Alessandro Rossi said:
I will want to find if a control is a type of control that
has the "ReadOnly" property.

Call GetType on the control reference, then call
GetProperty("ReadOnly") on the type.
 
Back
Top