1<?xml version="1.0" encoding="UTF-8"?> 2<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd"> 3<script:module xmlns:script="http://openoffice.org/2000/script" script:name="sheet_XSheetPageBreak" script:language="StarBasic"> 4 5 6'************************************************************************* 7' 8' Licensed to the Apache Software Foundation (ASF) under one 9' or more contributor license agreements. See the NOTICE file 10' distributed with this work for additional information 11' regarding copyright ownership. The ASF licenses this file 12' to you under the Apache License, Version 2.0 (the 13' "License"); you may not use this file except in compliance 14' with the License. You may obtain a copy of the License at 15' 16' http://www.apache.org/licenses/LICENSE-2.0 17' 18' Unless required by applicable law or agreed to in writing, 19' software distributed under the License is distributed on an 20' "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 21' KIND, either express or implied. See the License for the 22' specific language governing permissions and limitations 23' under the License. 24' 25'************************************************************************* 26 27 28 29 30 31' Be sure that all variables are dimensioned: 32option explicit 33 34 35 36Sub RunTest() 37 38'************************************************************************* 39' INTERFACE: 40' com.sun.star.sheet.XSheetPageBreak 41'************************************************************************* 42On Error Goto ErrHndl 43 Dim bOK As Boolean 44 Dim nColsBreaks As Integer 45 Dim nRowsBreaks As Integer 46 Dim oColumn As Object 47 Dim oRow As Object 48 Dim oPBs As Variant 49 Dim iRowsBefore As Integer 50 Dim iColsBefore As Integer 51 52 iColsBefore = ubound(oObj.getColumnPageBreaks()) - 1 53 iRowsBefore = ubound(oObj.getRowPageBreaks()) - 1 54 55 Out.Log("Before test: colBreaks: " & iColsBefore & _ 56 " rowBreaks: " & iRowsBefore) 57 58 Out.Log("Inserting new PageBreaks.") 59 oColumn = oObj.Columns.getByIndex(5) 60 oColumn.SetPropertyValue("IsStartOfNewPage", true) 61 oRow = oObj.Rows.getByIndex(15) 62 oRow.SetPropertyValue("IsStartOfNewPage", true) 63 64 Test.StartMethod("getColumnPageBreaks()") 65 bOK = true 66 oPBs = oObj.getColumnPageBreaks() 67 nColsBreaks = uBound(oPBs) 68 Out.Log("There are " & nColsBreaks & " column breaks.") 69 bOK = bOK AND nColsBreaks > 0 70 bOK = bOK AND oPBs(0).Position >= 0 71 Test.MethodTested("getColumnPageBreaks()", bOK) 72 73 Test.StartMethod("getRowPageBreaks()") 74 bOK = true 75 oPBs = oObj.getRowPageBreaks() 76 nRowsBreaks = uBound(oPBs) 77 Out.Log("There are " & nRowsBreaks & " row breaks.") 78 bOK = bOK AND nRowsBreaks > 0 79 bOK = bOK AND oPBs(0).Position >= 0 80 Test.MethodTested("getRowPageBreaks()", bOK) 81 82 Test.StartMethod("removeAllManualPageBreaks()") 83 bOK = true 84 oObj.removeAllManualPageBreaks() 85 Out.Log("After test: colBreaks: " & ubound(oObj.getColumnPageBreaks()) - 1 & _ 86 " rowBreaks: " & ubound(oObj.getRowPageBreaks()) - 1) 87 88 bOK = bOK AND ubound(oObj.getRowPageBreaks()) - 1 = iRowsBefore 89 bOK = bOK AND ubound(oObj.getColumnPageBreaks()) - 1= iColsBefore 90 Test.MethodTested("removeAllManualPageBreaks()", bOK) 91 92Exit Sub 93ErrHndl: 94 Test.Exception() 95 bOK = false 96 resume next 97End Sub 98</script:module> 99