'encoding UTF-8 Do not remove or change this line! '************************************************************************** ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. ' ' Copyright 2000, 2010 Oracle and/or its affiliates. ' ' OpenOffice.org - a multi-platform office productivity suite ' ' This file is part of OpenOffice.org. ' ' OpenOffice.org is free software: you can redistribute it and/or modify ' it under the terms of the GNU Lesser General Public License version 3 ' only, as published by the Free Software Foundation. ' ' OpenOffice.org is distributed in the hope that it will be useful, ' but WITHOUT ANY WARRANTY; without even the implied warranty of ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ' GNU Lesser General Public License version 3 for more details ' (a copy is included in the LICENSE file that accompanied this code). ' ' You should have received a copy of the GNU Lesser General Public License ' version 3 along with OpenOffice.org. If not, see ' ' for a copy of the LGPLv3 License. ' '/************************************************************************ '* '* owner : helge.delfs@oracle.com '* '* short description : Writer Table test '* '\*********************************************************************** sub w_204b_ Call wSplittingTableCellsIntoEqualProportions end sub testcase wSplittingTableCellsIntoEqualProportions Dim i as integer Dim DaRowHeight as string Dim SetRowHeight as boolean SetRowHeight = True printlog "Based on feature ID: 103485" printlog " Open a new writer document" Call hNewDocument printlog "Insert a table with 4 rows and 4 lines" Call TBOhTabelleEinfuegen("SplittingTable", 0, 1, 0, 1, "4", "4") printlog "Select the table ( Strg + A )" Call wTypeKeys ( "" ) printlog "Format / Row / Height" Kontext "ZellenHoehe" TableAutoFitSetRowHeight printlog "In upcoming dialog (Row Height) set height to 1,2cm and check 'Fit to size'" if iSystemSprache = 01 or iSystemSprache = 48 or iSystemSprache = 07 then Hoehe.Settext "1.20" else Hoehe.Settext "1,20" end if Dynamisch.Check DaRowHeight = Hoehe.Gettext printlog "Close 'Row Height' with 'OK'" ZellenHoehe.Ok printlog "Point cursor to first cell in first row ( Strg + Home )" Call wTypeKeys ( "" ) For i = 1 to 4 if wCheckRowHeight( DaRowHeight ) = False then SetRowHeight = False Call wTypeKeys ( "" ) next i if SetRowHeight = True then Call wTypeKeys ( "", 4 ) printlog "Select 1st and 2nd column" Call wTypeKeys ( "", 3 ) Call wTypeKeys ( "" ) printlog "Format / Cell / Merge to merge all cells" TableMergeCells printlog "Now split previous merged cell into 4 pieces ( horizontally )" printlog "Format / Cell / Split" TableSplitCell Kontext "ZellenTeilen" printlog "In 'Split Cells' Dialog set 'Split cell into' to 4" Anzahl.Settext "4" printlog "Check 'Horizontally' and 'Into equal proportions'" Horizontal.Check GleichmaessigTeilen.Check printlog "Close dialog with 'OK'" ZellenTeilen.Ok printlog "Now the cell has to be splitted into 4 rows of height 1,2cm" For i = 1 to 4 if wCheckRowHeight( DaRowHeight ) = False then SetRowHeight = False Call wTypeKeys ( "" ) next i else Warnlog "Error setting the row height !" end if Call hCloseDocument endcase