diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2012-06-29 11:26:13 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-06-29 16:00:20 +0200 |
commit | 5b021a1f0d281aed40ae83dffe4af7600b858bd5 (patch) | |
tree | 9553bf49e5910d120c10d20c08adef656459c047 /offapi/com | |
parent | bf5115328ed454f43b4443f3891a0183dfd62814 (diff) |
sw: initial HeaderIsSharedFirst / FooterIsSharedFirst
It's just like HeaderIsShared / FooterIsShared, enabled by default when
header / footer is on. It does nothing yet, but it's read-writable.
Motivation: https://wiki.oasis-open.org/office/HeaderFooterFirst
Change-Id: I1ccfd0aedd1ac71e9f39b7fd43754264afafc1ef
Diffstat (limited to 'offapi/com')
-rw-r--r-- | offapi/com/sun/star/style/PageProperties.idl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/offapi/com/sun/star/style/PageProperties.idl b/offapi/com/sun/star/style/PageProperties.idl index b0da2518bf6b..ebd7b4957041 100644 --- a/offapi/com/sun/star/style/PageProperties.idl +++ b/offapi/com/sun/star/style/PageProperties.idl @@ -258,6 +258,12 @@ published service PageProperties */ [property, maybevoid] boolean HeaderIsShared; //----------------------------------------------------------------------------- +/** determines if the header content on the first page and remaining pages is the same. + + @since LibreOffice 3.7 + */ +[optional, property, maybevoid] boolean HeaderIsSharedFirst; +//----------------------------------------------------------------------------- /** contains the height of the header. */ [property, maybevoid] long HeaderHeight; @@ -364,6 +370,12 @@ published service PageProperties */ [property, maybevoid] boolean FooterIsShared; //----------------------------------------------------------------------------- +/** determines if the footer content on the first page and remaining pages is the same. + + @since LibreOffice 3.7 + */ +[optional, property, maybevoid] boolean FooterIsSharedFirst; +//----------------------------------------------------------------------------- /** determines the height of the footer. */ [property, maybevoid] long FooterHeight; |