To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=113200
                 Issue #|113200
                 Summary|OpenOffice.org doesn´t recognize rowspan property fro
                        |m tables of RTF files
               Component|api
                 Version|OOo 3.2.1
                Platform|PC
                     URL|
              OS/Version|Windows XP
                  Status|UNCONFIRMED
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|DEFECT
                Priority|P3
            Subcomponent|code
             Assigned to|jsc
             Reported by|gbpacheco





------- Additional comments from gbpach...@openoffice.org Fri Jul 16 14:52:59 
+0000 2010 -------
Hi!

 First, open the issue attachment RTF file. Then, run this code in Basic:

  Sub ManTable()
      oTable = ThisComponent.TextTables(0)
      For i = 0 to oTable.getRows.getCount() - 1 
          For n = 0 to oTable.getColumns.getCount() - 1 
              oCell = oTable.getCellByPosition(n,i)
              MsgBox "Cell: " & oCell.String & "   Rowspan:" & oCell.Rowspan
          Next n    
      Next i         
  end sub

 The rowspan property of the B2 cell shows 1, instead 2. If you save this RTF
file in ODT format and re-execute the code, the rowspan continues showing 1.

 However, in other cases like:
 - if you create an ODT file with the same table struct or;
 - if you open a DOC file with the same table struct;
 the rowspan property shows 2. 

 This problem is an RTF import error or a RTF file limitation?

 Thanks!
 Gustavo Pacheco

---------------------------------------------------------------------
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: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


---------------------------------------------------------------------
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org

Reply via email to