Commit 2284bf27 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov
parent 65fbf2f2
......@@ -1969,6 +1969,28 @@ namespace NSEditorApi
return 0;
}
};
class CAscTableInsertDeleteRowColumn : public IMenuEventDataBase
{
public:
js_wrapper<bool> m_bAbove;
js_wrapper<bool> m_bBelow;
js_wrapper<bool> m_bIsAdd; // true - add, false - remove
js_wrapper<int> m_nType; // 1 - column, 2 - row
public:
CAscTableInsertDeleteRowColumn()
{
}
virtual ~CAscTableInsertDeleteRowColumn()
{
}
LINK_PROPERTY_BOOL_JS(Above)
LINK_PROPERTY_BOOL_JS(Below)
LINK_PROPERTY_BOOL_JS(IsAdd)
LINK_PROPERTY_INT_JS(Type)
};
}
// header/footer
......
......@@ -626,6 +626,8 @@
#define ASC_MENU_EVENT_TYPE_STATISTIC_END 69
#define ASC_MENU_EVENT_TYPE_STATISTIC_INFO 70
#define ASC_MENU_EVENT_TYPE_TABLE_INSERTDELETE_ROWCOLUMN 71
#define ASC_MENU_EVENT_TYPE_KEYBOARD_SHOW 100
#define ASC_MENU_EVENT_TYPE_KEYBOARD_UNSHOW 101
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment