diff options
author | Ariel Constenla-Haile <arielch@apache.org> | 2012-11-04 02:42:08 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-06-07 11:01:47 +0100 |
commit | e98c03ed6525b026ca3cd7941b3634c0f5561397 (patch) | |
tree | 3872a99299d4c749ad49fbb10810e3c6ed3b2024 /offapi | |
parent | 08a6da99415c6b9f6f7e705e2d276ce2febf4e8b (diff) |
Resolves: #i87780# Document css::text::AutoTextGroup properties
(cherry picked from commit cdc1af8302d0998f98776ec103f1402ee9a3d6f4)
Conflicts:
offapi/com/sun/star/text/AutoTextGroup.idl
Change-Id: I543e5c34973e39c4f5fe95388411db2967f7ced2
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/text/AutoTextGroup.idl | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/offapi/com/sun/star/text/AutoTextGroup.idl b/offapi/com/sun/star/text/AutoTextGroup.idl index 82d60f03f16f..be9f1940aedf 100644 --- a/offapi/com/sun/star/text/AutoTextGroup.idl +++ b/offapi/com/sun/star/text/AutoTextGroup.idl @@ -20,28 +20,33 @@ #define __com_sun_star_text_AutoTextGroup_idl__ #include <com/sun/star/text/XAutoTextGroup.idl> - #include <com/sun/star/container/XIndexAccess.idl> - #include <com/sun/star/container/XNamed.idl> +module com { module sun { module star { module text { - - module com { module sun { module star { module text { - -/** provides access to text blocks in a group.@see com::sun::star::text::AutoTextContainer +/** provides access to text blocks in a group. + @see com::sun::star::text::AutoTextContainer */ published service AutoTextGroup { interface com::sun::star::text::XAutoTextGroup; + interface com::sun::star::container::XIndexAccess; /** provides access to the name of the group. - */ + */ interface com::sun::star::container::XNamed; -}; + /** The path to the file containing the AutoTextEntry's in this group + */ + [property, readonly] string FilePath; + /** The title of this AutoTextGroup + */ + [property] string Title; + +}; }; }; }; }; |