Locking the keypad using Symbian C++
Article Metadata
Compatibility
Platform(s): S60 1st Edition and later (all version to at least 5th Edition)
Article
Created: User:Technical writer 2
(10 May 2007)
Last edited: hamishwillee
(14 Sep 2012)
Overview
Locking the keypad from an application.
Description
The keypad can be locked with the RAknKeyLock class:
RAknKeyLock keyLock;
if( keyLock.Connect() == KErrNone )
{
if(!keyLock.IsKeyLockEnabled())
{
keyLock.EnableKeyLock();
keyLock.Close();
}
}


(no comments yet)