To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=63211





------- Additional comments from [EMAIL PROTECTED] Sun May  7 23:09:21 -0700 
2006 -------
Here is a workaround:

you
create a viewcursor and then get its y position then go
to the end and then get the y postion again. 

//    get the cursor
XTextViewCursor xViewCursor =
xViewCursorSupplier.getViewCursor();

xViewCursor.gotoRange( frameCursor, false );
Point pos = xViewCursor.getPosition();

int yPos1 = pos.Y;

xViewCursor.gotoEnd( false );

pos = xViewCursor.getPosition();

int yPos2 = pos.Y;

long actualHeight = yPos2 - yPos1;

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to