AxAssist

Main Features Downloads Purchase Forum Support  

Features

Contents
  1. All contents

  2. 1. Dynamics AX AOT
  3. 2. Dynamics AX Editor
    1. 2.1. Suggestions
      1. 2.1.1. Variable list
      2. 2.1.2. Variable names list
      3. 2.1.3. Name Matching
      4. 2.1.4. Acronyms
      5. 2.1.5. User list
    2. 2.2 Browsing and navigation code
  4. 3. Hotkeys
  5. 4. Settings
  6. 5. Code reformatter
  7. 6. How to...
    1. 6.1. How to add new button on toolbar
    2. 6.2. How to add new hotkey
    3. 6.3. How to use your text as suggestion
      1. 6.3.1. In User list
      2. 6.3.2. In Acronyms list
    4. 6.4. How to customize tooltips
    5. 6.5. How to set up the auxiliary panel (HelpPane) in Dynamics AX Editor
    6. 6.6. How to start AxAssist after Dynamics AX startup
Axapta Editor


Variable names list

Variable names suggestion list appears after entering type and pressing space button.



Variable names suggestion with Ignored Prefix set to "MP_":



This feature is customizable.
You can configure it in \Classes\DEV_AxAssistUserList\addVariableNamesList method.

Function SetVariableNameSuggestion definition:

void SetVariableNameSuggestion(int _nType, int _nApply, str _strPrefix, str _strType, str _strWholeName);

_nType - 0 - prefix, 1 - postfix.
_nApply - DEV_AxAssistVarType::ALL - apply to all objects, DEV_AxAssistVarType::Table - apply for tables only and etc.
_strPrefix - prefix or postfix string.
_strType - if not empty - this suggestion applied only for this type.
_strWholeName - if not empty - this string used like suggestion string. strPrefix is ignored.

Variable names list could be modified by user logic before suggestion will be appeared.
It could be performed in \Classes\DEV_AxAssistUserList\CheckVariableSuggestion method.
© 2007 - 2008 - axassist.com