Exemple
L'exemple suivant montre comment déterminer si l'OIA indique que le clavier est en mode alphanumérique.
//------------------------------------------------------------------- // ECLOIA::IsAlphanumeric // // Determine status of connection 'A' OIA indicator //------------------------------------------------------------------- void Sample46() { ECLOIA OIA('A'); // OIA object for connection A if (OIA.IsAlphanumeric()) printf("Alphanumeric.\n"); else printf("Not Alphanumeric.\n"); } // end sample