If you have keywords that are meaningful in the drag sequence, use the following function to specify them:
void AcEdJig::setKeywordList(const ACHAR* kyWdList);
The keyword list is a single string in which each keyword is separated from the others by spaces. The required characters are capitalized, and the remainder of each keyword is lowercase.
For example, “CloseUndo” specifies two keywords. The DragStatus enum associates values with each keyword. The first keyword is kKW1, the second is kKW2, and so on. When you implement your AcEdJig class, you can use these return values in your implementations of the sampler(), update(), and entity() functions.