Message 1 of 4
How to accept a Jig keyword without entering an extra space key or enter key
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm using Jig for a block reference insertion. Everything is fine except that I have to enter an extra space key or enter key to let AutoCAD know that the keyword has been entered completely.
I find another application which sets all keywords with only one letter. In that case, when users finish typing the letter(without space key or enter key), the application could respond immediately.
Base on the application's UI, I guess the message and keywords settings are as follow:
JigPromptPointOptions jigOpts = new JigPromptPointOptions();
jigOpts.UserInputControls = (
UserInputControls.Accept3dCoordinates
| UserInputControls.NoZeroResponseAccepted
| UserInputControls.NoNegativeResponseAccepted);
jigOpts.SetMessageAndKeywords("\nSpecify intertion point[Rotate90(A)/HFlip(S)/VFlip(D)/ChangeBasePt(T)]", "A S D T");
But I could not figure out how to eliminate the space key or enter key. Could someone help? Thanks.