'encoding UTF-8 Do not remove or change this line! '************************************************************************* ' ' Licensed to the Apache Software Foundation (ASF) under one ' or more contributor license agreements. See the NOTICE file ' distributed with this work for additional information ' regarding copyright ownership. The ASF licenses this file ' to you under the Apache License, Version 2.0 (the ' "License"); you may not use this file except in compliance ' with the License. You may obtain a copy of the License at ' ' http://www.apache.org/licenses/LICENSE-2.0 ' ' Unless required by applicable law or agreed to in writing, ' software distributed under the License is distributed on an ' "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ' KIND, either express or implied. See the License for the ' specific language governing permissions and limitations ' under the License. ' '************************************************************************* '* '* short description : Tools for Keyboard Accessibility '* '************************************************************************ '* ' #1 fDataPilotRowSelection ' #1 fDataPilotColumnSelection ' #1 fDataPilotDataSelection '* '\*********************************************************************** function fDataPilotRowSelection() fDataPilotRowSelection = TRUE select case iSprache case 01 : ' English (USA) DataPilotSelection.typekeys "" case 33 : ' French DataPilotSelection.typekeys "" case 34 : ' Spanish DataPilotSelection.typekeys "" case 39 : ' Italian DataPilotSelection.typekeys "" case 46 : ' Swedish DataPilotSelection.typekeys "" case 49 : ' German DataPilotSelection.typekeys "" case 55 : ' Portuguese DataPilotSelection.typekeys "" case 81 : ' Japanese DataPilotSelection.typekeys "" case 82 : ' Korean DataPilotSelection.typekeys "" case 86 : ' Chinese (simplified) DataPilotSelection.typekeys "" case 88 : ' Chinese (traditional) DataPilotSelection.typekeys "" case else : ' Fallback QAErrorLog "Now, the test does not support for the language " +iSprache fDataPilotRowSelection = FALSE end select end function '---------------------------------------------------- function fDataPilotColumnSelection() fDataPilotColumnSelection = TRUE select case iSprache case 01 : ' English (USA) DataPilotSelection.typekeys "" case 33 : ' French DataPilotSelection.typekeys "" case 34 : ' Spanish DataPilotSelection.typekeys "" case 39 : ' Italian DataPilotSelection.typekeys "" case 46 : ' Swedish DataPilotSelection.typekeys "" case 49 : ' German DataPilotSelection.typekeys "" case 55 : ' Portuguese DataPilotSelection.typekeys "" case 81 : ' Japanese DataPilotSelection.typekeys "" case 82 : ' Korean DataPilotSelection.typekeys "" case 86 : ' Chinese (simplified) DataPilotSelection.typekeys "" case 88 : ' Chinese (traditional) DataPilotSelection.typekeys "" case else : ' Fallback QAErrorLog "Now, the test does not support for the language " +iSprache fDataPilotColumnSelection = FALSE end select end function '---------------------------------------------------- function fDataPilotDataSelection() fDataPilotDataSelection = TRUE select case iSprache case 01 : ' English (USA) DataPilotSelection.typekeys "" case 33 : ' French DataPilotSelection.typekeys "" case 34 : ' Spanish DataPilotSelection.typekeys "" case 39 : ' Italian DataPilotSelection.typekeys "" case 46 : ' Swedish DataPilotSelection.typekeys "" case 49 : ' German DataPilotSelection.typekeys "" case 55 : ' Portuguese DataPilotSelection.typekeys "" case 81 : ' Japanese DataPilotSelection.typekeys "" case 82 : ' Korean DataPilotSelection.typekeys "" case 86 : ' Chinese (simplified) DataPilotSelection.typekeys "" case 88 : ' Chinese (traditional) DataPilotSelection.typekeys "" case else : ' Fallback QAErrorLog "Now, the test does not support for the language " +iSprache fDataPilotDataSelection = FALSE end select end function '---------------------------------------------------- function fDataPilotPageSelection() fDataPilotPageSelection = TRUE select case iSprache case 01 : ' English (USA) DataPilotSelection.typekeys "" case else : ' Fallback QAErrorLog "Now, the test does not support for the language " +iSprache fDataPilotPageSelection = FALSE end select end function