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' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9'
10' Copyright 2000, 2010 Oracle and/or its affiliates.
11'
12' OpenOffice.org - a multi-platform office productivity suite
13'
14' This file is part of OpenOffice.org.
15'
16' OpenOffice.org is free software: you can redistribute it and/or modify
17' it under the terms of the GNU Lesser General Public License version 3
18' only, as published by the Free Software Foundation.
19'
20' OpenOffice.org is distributed in the hope that it will be useful,
21' but WITHOUT ANY WARRANTY; without even the implied warranty of
22' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23' GNU Lesser General Public License version 3 for more details
24' (a copy is included in the LICENSE file that accompanied this code).
25'
26' You should have received a copy of the GNU Lesser General Public License
27' version 3 along with OpenOffice.org.  If not, see
28' <http://www.openoffice.org/license.html>
29' for a copy of the LGPLv3 License.
30'
31'*************************************************************************
32*****
33'*************************************************************************
34
35
36
37' Be sure that all variables are dimensioned:
38option explicit
39
40
41
42Sub RunTest()
43
44'*************************************************************************
45' INTERFACE:
46' com.sun.star.sheet.XSheetPageBreak
47'*************************************************************************
48On Error Goto ErrHndl
49    Dim bOK As Boolean
50    Dim nColsBreaks As Integer
51    Dim nRowsBreaks As Integer
52    Dim oColumn As Object
53    Dim oRow As Object
54    Dim oPBs As Variant
55    Dim iRowsBefore As Integer
56    Dim iColsBefore As Integer
57
58    iColsBefore = ubound(oObj.getColumnPageBreaks()) - 1
59    iRowsBefore = ubound(oObj.getRowPageBreaks()) - 1
60
61    Out.Log("Before test: colBreaks: " &amp; iColsBefore &amp; _
62                        " rowBreaks: " &amp; iRowsBefore)
63
64    Out.Log("Inserting new PageBreaks.")
65    oColumn = oObj.Columns.getByIndex(5)
66    oColumn.SetPropertyValue("IsStartOfNewPage", true)
67    oRow = oObj.Rows.getByIndex(15)
68    oRow.SetPropertyValue("IsStartOfNewPage", true)
69
70    Test.StartMethod("getColumnPageBreaks()")
71    bOK = true
72    oPBs = oObj.getColumnPageBreaks()
73    nColsBreaks = uBound(oPBs)
74    Out.Log("There are " &amp; nColsBreaks &amp; " column breaks.")
75    bOK = bOK AND nColsBreaks &gt; 0
76    bOK = bOK AND oPBs(0).Position &gt;= 0
77    Test.MethodTested("getColumnPageBreaks()", bOK)
78
79    Test.StartMethod("getRowPageBreaks()")
80    bOK = true
81    oPBs = oObj.getRowPageBreaks()
82    nRowsBreaks = uBound(oPBs)
83    Out.Log("There are " &amp; nRowsBreaks &amp; " row breaks.")
84    bOK = bOK AND nRowsBreaks &gt; 0
85    bOK = bOK AND oPBs(0).Position &gt;= 0
86    Test.MethodTested("getRowPageBreaks()", bOK)
87
88    Test.StartMethod("removeAllManualPageBreaks()")
89    bOK = true
90    oObj.removeAllManualPageBreaks()
91    Out.Log("After test: colBreaks: " &amp; ubound(oObj.getColumnPageBreaks()) - 1 &amp; _
92                       " rowBreaks: " &amp; ubound(oObj.getRowPageBreaks()) - 1)
93
94    bOK = bOK AND ubound(oObj.getRowPageBreaks()) - 1 = iRowsBefore
95    bOK = bOK AND ubound(oObj.getColumnPageBreaks()) - 1= iColsBefore
96    Test.MethodTested("removeAllManualPageBreaks()", bOK)
97
98Exit Sub
99ErrHndl:
100    Test.Exception()
101    bOK = false
102    resume next
103End Sub
104</script:module>
105