acedSSGet() with custom prompts

When I use acedSSGet() with selMode set to ":$" - Prompts supplied (Although this mode is not in BrxApi reference, but it is working as described in ObjectArx reference), there is allways "[selection options (?)]" appended to the provided string.
Example, following code:
ads_name ss;
ACHAR prompts[] = {ACRX_T("\nPrompt1"), ACRX_T("\nPrompt2")};
int res = acedSSGet(ACRX_T(":$", prompts, nullptr, nullptr, ss);
Should produce prompt output:
"Prompt1:"
Instead, output is:
"Prompt1 [selection options (?)]:"

I assume this is not intentional, so are you planning to fix it?

Comments

  • I think the functionality is the same, your remove prompt shows....
    Kind of a bummer the prompt is hijacked, but it still works
  • Problem is, that defult keywords (supplied by "[selection options (?)]") are still active and you can't hide them.