diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-03 16:44:51 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-03 17:44:23 +0200 |
commit | 5b75b4e1ec77515db811be9d7895bb7bd9d23088 (patch) | |
tree | 870f5ca9e88c0bca45a5ef372ab0be765c2f5152 /offapi | |
parent | eedf546acb878cb7c5856d33aad7496c1ad23269 (diff) |
first part for correct handling of new cond format entries
Change-Id: I82f66218bf02898e523e4f69fec9166aa00d0b83
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/sheet/XConditionalFormat.idl | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/offapi/com/sun/star/sheet/XConditionalFormat.idl b/offapi/com/sun/star/sheet/XConditionalFormat.idl index 62f99621f5de..aed1fec7ecdc 100644 --- a/offapi/com/sun/star/sheet/XConditionalFormat.idl +++ b/offapi/com/sun/star/sheet/XConditionalFormat.idl @@ -17,7 +17,16 @@ module com { module sun { module star { module sheet { interface XConditionalFormat : com::sun::star::container::XIndexAccess { - void addEntry( [in] com::sun::star::sheet::XConditionEntry entry ); + /** + * Creates a new conditional format entry and insert its at the position. + * + * @param Type: a com.sun.star.sheet.ConditionFormatEntryType specifying the + * type of the new entry + * + * @param Position: the position in the conditional format + * + */ + void createEntry( [in] long Type, [in] long Position ); void removeByIndex( [in] long Index ); }; |