|
Convert Public Variable To Property |
Top Previous Next |
|
The Convert Public Variable To Property feature allows you to convert easily a public member variable such as:
Public Count As Long to a pair of Get / Let properties such as:
Private m_lCount As Long Count = m_lCount End Property m_lCount = lCount End Property Once the cursor is in the line with the public variable, MZ-Tools offers the following ways to convert it to a property:
Then, the line under the cursor will be parsed and the proper values will be filled in the Add Procedure dialog. When you click the Add button, the member variable is converted to a property. Remarks:
See Also: |