Example

The following example shows how to determine if the OIA indicates that the cursor is at a numeric location.

//-------------------------------------------------------------------
// ECLOIA::IsNumeric
//
// Determine status of connection 'A' OIA indicator
//-------------------------------------------------------------------
void Sample52() {
 
ECLOIA OIA('A');   // OIA object for connection A
 
if (OIA.IsNumeric())
  printf("Numeric.\n");
else
  printf("Not Numeric.\n");
 
} // end sample