|
The section of the window allows you to customize nomenclature preferences used mainly by the Add Procedure feature:

The settings that you can customize are the following:
- : suffix used in the result variable for procedures when using the Add Procedure feature. Typically you will use "Result" as suffix. For example:
Public Function Age() As Long
Dim lResult As Long
Age = lResult
End Function
- : prefix used in the member variable for procedures when using the Add Procedure or Convert Public Variable To Property features. Typically you will use "m_" or "m" as prefix. For example:
Private m_lAge As Long
Public Property Get Age() As Long
Age = m_lAge
End Property
Public Property Let Age(ByVal lAge As Long)
m_lAge = lAge
End Property
- : prefixes used for data types when using the Add Procedure or Convert Public Variable To Property features. In the previous examples "l" is the prefix used for variables of the type.
See Also
|