source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/util/KeyUtils.as@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 277 bytes
Line 
1package gov.va.med.edp.util
2{
3 import flash.events.KeyboardEvent;
4 import flash.ui.Keyboard;
5
6 public class KeyUtils {
7 public static function isRemoveKey(e:KeyboardEvent):Boolean {
8 return e.keyCode == Keyboard.BACKSPACE || e.keyCode == Keyboard.DELETE;
9 }
10 }
11}
Note: See TracBrowser for help on using the repository browser.