summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/excel/XMenuItem.idl
blob: 2941b7ac40f297e5c5285a42f334e3ceceae70c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef __ooo_vba_excel_XMenuItem_idl__
#define __ooo_vba_excel_XMenuItem_idl__

#ifndef __com_sun_star_uno_XInterface_idl__
#include <com/sun/star/uno/XInterface.idl>
#endif

#ifndef __ooo_vba_XHelperInterface_idl__
#include <ooo/vba/XHelperInterface.idl>
#endif
//=============================================================================

module ooo {  module vba {  module excel {
//=============================================================================

interface XMenuItem
{
    interface XHelperInterface;

    [attribute] string Caption;
    [attribute] string OnAction;

    void Delete() raises ( com::sun::star::script::BasicErrorException );
};

}; }; };

#endif