|
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.
|