Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
public static final int GetPoint = 1;
public static final int GetAngle = 2;
public static final int GetDistance = 3;
public static final int GetOrient = 4;
public static final int GetCorner = 5;
public static final int GetScale = 6;
public static final int GetKeyword = 7;
public static final int GetColor = 8;
public static final int GetInt = 9;
public static final int GetDouble = 10;
public static final int GetString = 11;
public static final int GetSelection = 12;


Note: It is highly important to always provide to the user a control that allows him to cancel the current command routine. The current command routine can be canceled using method cancel(). The final call will look like: CFxARESInstance.instance().userInput().cancel()
Some command prompts have default values. These default values can be processed with the method accept(). The final call will look like: CFxARESInstance.instance().userInput().accept()

...