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