Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I would like to use a PromptPointOptions with no message.
I use it when user clicks a button and I always get a colon printed to the command line. They even keep stacking in the same line.
PromptPointOptions pPick = new PromptPointOptions("");
pPick.Message = ""; // this line does not change anything
I do change some system variables before calling the prompt, but this should not have any effect.
// Set PolarMode to include 1 + 4
// ("Relative to last segment" and "Additional angles")
Application.SetSystemVariable("POLARMODE", 5);
// set AUTOSNAP to include everything
Application.SetSystemVariable("AUTOSNAP", 63);
Application.SetSystemVariable("ANGBASE", inLineAngle);
Application.SetSystemVariable("ANGDIR", 1);
This is how picking the point looks like with Dynamic Input on or off. The colon is always here. If I add a message to the prompt, it just shows before the colon.
And the command line, see the colons:
Solved! Go to Solution.