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_XLabelRange" 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.XLabelRange 41'************************************************************************* 42On Error Goto ErrHndl 43 Dim bOK, bAllOK As Boolean 44 Dim oldArea, newArea As Object 45 Dim Area As New com.sun.star.table.CellRangeAddress 46 47 Test.StartMethod("getLabelArea()") 48 bOK = true 49 bOK = bOK AND NOT isNULL(oObj.getLabelArea()) 50 Test.MethodTested("getLabelArea()", bOK) 51 52 bAllOK = bAllOK AND bOK 53 54 Test.StartMethod("setLabelArea()") 55 bOK = true 56 57 Area.Sheet = 0 58 Area.StartColumn = 1 59 Area.StartRow = 1 60 Area.EndColumn = 5 61 Area.EndRow = 5 62 63 oldArea = oObj.getLabelArea() 64 oObj.setLabelArea(Area) 65 newArea = oObj.getLabelArea() 66 bOK = bOK AND NOT isNULL(newArea) 67 68 bOK = bOK AND newArea.Sheet = Area.Sheet 69 bOK = bOK AND newArea.StartColumn = Area.StartColumn 70 bOK = bOK AND newArea.StartRow = Area.StartRow 71 bOK = bOK AND newArea.EndColumn = Area.EndColumn 72 bOK = bOK AND newArea.EndRow = Area.EndRow 73 74 oObj.setLabelArea(oldArea) 75 Test.MethodTested("setLabelArea()", bOK) 76 77 Test.StartMethod("getDataArea()") 78 bOK = true 79 bOK = bOK AND NOT isNULL(oObj.getDataArea()) 80 Test.MethodTested("getDataArea()", bOK) 81 82 Test.StartMethod("setDataArea()") 83 bOK = true 84 85 Area.Sheet = 0 86 Area.StartColumn = 1 87 Area.StartRow = 1 88 Area.EndColumn = 5 89 Area.EndRow = 5 90 91 oldArea = oObj.getDataArea() 92 oObj.setDataArea(Area) 93 newArea = oObj.getDataArea() 94 bOK = bOK AND NOT isNULL(newArea) 95 96 bOK = bOK AND newArea.Sheet = Area.Sheet 97 bOK = bOK AND newArea.StartColumn = Area.StartColumn 98 bOK = bOK AND newArea.StartRow = Area.StartRow 99 bOK = bOK AND newArea.EndColumn = Area.EndColumn 100 bOK = bOK AND newArea.EndRow = Area.EndRow 101 102 oObj.setDataArea(oldArea) 103 Test.MethodTested("setDataArea()", bOK) 104 105Exit Sub 106ErrHndl: 107 Test.Exception() 108 bOK = false 109 resume next 110End Sub 111</script:module> 112