Example

The following example shows how to determine if the OIA indicates that Katakana characters are enabled.

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