diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-01-30 14:25:05 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-01-30 14:25:05 +0000 |
commit | 6eb08a389551690f982838be4cb30b395bc32ef5 (patch) | |
tree | 5edcc190e42ce26d2d418b403d1c579bc16f5b4a /offapi | |
parent | 06f366a5a243895862a344956f54877a5d2904b7 (diff) |
INTEGRATION: CWS tl25 (1.9.168); FILE MERGED
2006/09/11 11:34:02 tl 1.9.168.1: #i69367# 'Frame' added to list of possible TextPortionType's
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/text/TextPortion.idl | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/offapi/com/sun/star/text/TextPortion.idl b/offapi/com/sun/star/text/TextPortion.idl index edfc30db0bf4..02f9e3d6498b 100644 --- a/offapi/com/sun/star/text/TextPortion.idl +++ b/offapi/com/sun/star/text/TextPortion.idl @@ -4,9 +4,9 @@ * * $RCSfile: TextPortion.idl,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: rt $ $Date: 2005-09-08 06:30:49 $ + * last change: $Author: rt $ $Date: 2007-01-30 15:25:05 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -74,6 +74,7 @@ published service TextPortion { service com::sun::star::text::TextRange; + //------------------------------------------------------------------------- /** contains text frames, graphic objects, embedded objects or shapes that are anchored at or as character. @see com.sun.star.text.TextFrame @@ -81,11 +82,13 @@ published service TextPortion */ [optional] interface ::com::sun::star::container::XContentEnumerationAccess; + //------------------------------------------------------------------------- /** gives access to a sequence of properties. @since OOo 2.0.0 */ [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet; + //------------------------------------------------------------------------- /** contains the type of the text portion. <p> Valid content type names are:</p> <UL> @@ -98,18 +101,27 @@ published service TextPortion <LI><P>DocumentIndexMark - a document index mark</P> <LI><P>Bookmark - a bookmark</P> <LI><P>Redline - a redline portion which is a result of the change tracking feature.</P> - <LI><P>Ruby - a ruby attribute which is used in Asian text.</P> + <LI><P>Ruby - a ruby attribute which is used in Asian text</P> + <LI><P>Frame - a frame.</P> </UL> <p>The text portions for reference marks and document index marks are generated twice for each mark since they may include string content.</p> */ [readonly, property] string TextPortionType; + + //------------------------------------------------------------------------- /** returns the control character if the text portion contains a ControlCharacter*/ [readonly, property] short ControlCharacter; + + //------------------------------------------------------------------------- /** contains the bookmark if the portion is of the type */ [optional, property] com::sun::star::text::XTextContent Bookmark; + + //------------------------------------------------------------------------- /** determines whether the portion is a point only.*/ [optional, property] boolean IsCollapsed; + + //------------------------------------------------------------------------- /** determines whether the portion is a start portion if two portions are needed to include an object (i.e. DocmentIndexMark)*/ [optional, property] boolean IsStart; |