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