From: Nick Burch Date: Thu, 13 Jul 2006 09:24:39 +0000 (+0000) Subject: Expose the underlying TextRun X-Git-Tag: REL_3_0_ALPHA3~71 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=cc3a899a3eac480ae54d620e4b83d924a9a84175;p=poi.git Expose the underlying TextRun git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@421555 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/scratchpad/src/org/apache/poi/hslf/model/TextBox.java b/src/scratchpad/src/org/apache/poi/hslf/model/TextBox.java index 465896d61d..760fa1b215 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/model/TextBox.java +++ b/src/scratchpad/src/org/apache/poi/hslf/model/TextBox.java @@ -414,6 +414,13 @@ public class TextBox extends SimpleShape { setEscherProperty(opt, EscherProperties.FILL__FILLBACKCOLOR, rgb); } + /** + * @return the TextRun object for this text box + */ + public TextRun getTextRun(){ + return _txtrun; + } + /** * @return array of RichTextRun objects which control text formatting in this text box */