Nomenclature Customization

Top  Previous  Next

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

nomenclature_customization

The settings that you can customize are the following:

  • Result Variable Suffix: suffix used in the result variable for Function 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
     
  • Member Variable Prefix: prefix used in the member variable for Property 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
     
  • Type Prefixes: 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 Long type.

See Also:

Add Procedure

Convert Public Variable To Property