diff options
Diffstat (limited to 'oovbaapi/ooo/vba/excel/XlCalculationInterruptKey.idl')
-rw-r--r-- | oovbaapi/ooo/vba/excel/XlCalculationInterruptKey.idl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/excel/XlCalculationInterruptKey.idl b/oovbaapi/ooo/vba/excel/XlCalculationInterruptKey.idl new file mode 100644 index 0000000000..d8c069768f --- /dev/null +++ b/oovbaapi/ooo/vba/excel/XlCalculationInterruptKey.idl @@ -0,0 +1,10 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +module ooo { module vba { module excel { + constants XlCalculationInterruptKey { + const long xlAnyKey = 2; + const long xlEscKey = 1; + const long xlNoKey = 0; + }; +}; }; }; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |