1*b1cdbd2cSJim Jagielski<?xml version="1.0" encoding="UTF-8"?>
2*b1cdbd2cSJim Jagielski<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
3*b1cdbd2cSJim Jagielski<script:module xmlns:script="http://openoffice.org/2000/script" script:name="sheet_XSheetCellRangeContainer" script:language="StarBasic">
4*b1cdbd2cSJim Jagielski
5*b1cdbd2cSJim Jagielski
6*b1cdbd2cSJim Jagielski'*************************************************************************
7*b1cdbd2cSJim Jagielski'
8*b1cdbd2cSJim Jagielski'  Licensed to the Apache Software Foundation (ASF) under one
9*b1cdbd2cSJim Jagielski'  or more contributor license agreements.  See the NOTICE file
10*b1cdbd2cSJim Jagielski'  distributed with this work for additional information
11*b1cdbd2cSJim Jagielski'  regarding copyright ownership.  The ASF licenses this file
12*b1cdbd2cSJim Jagielski'  to you under the Apache License, Version 2.0 (the
13*b1cdbd2cSJim Jagielski'  "License"); you may not use this file except in compliance
14*b1cdbd2cSJim Jagielski'  with the License.  You may obtain a copy of the License at
15*b1cdbd2cSJim Jagielski'
16*b1cdbd2cSJim Jagielski'    http://www.apache.org/licenses/LICENSE-2.0
17*b1cdbd2cSJim Jagielski'
18*b1cdbd2cSJim Jagielski'  Unless required by applicable law or agreed to in writing,
19*b1cdbd2cSJim Jagielski'  software distributed under the License is distributed on an
20*b1cdbd2cSJim Jagielski'  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21*b1cdbd2cSJim Jagielski'  KIND, either express or implied.  See the License for the
22*b1cdbd2cSJim Jagielski'  specific language governing permissions and limitations
23*b1cdbd2cSJim Jagielski'  under the License.
24*b1cdbd2cSJim Jagielski'
25*b1cdbd2cSJim Jagielski'*************************************************************************
26*b1cdbd2cSJim Jagielski
27*b1cdbd2cSJim Jagielski
28*b1cdbd2cSJim Jagielski
29*b1cdbd2cSJim Jagielski
30*b1cdbd2cSJim Jagielski
31*b1cdbd2cSJim Jagielski' Be sure that all variables are dimensioned:
32*b1cdbd2cSJim Jagielskioption explicit
33*b1cdbd2cSJim Jagielski
34*b1cdbd2cSJim Jagielski
35*b1cdbd2cSJim Jagielski
36*b1cdbd2cSJim JagielskiSub RunTest()
37*b1cdbd2cSJim Jagielski
38*b1cdbd2cSJim Jagielski'*************************************************************************
39*b1cdbd2cSJim Jagielski' INTERFACE:
40*b1cdbd2cSJim Jagielski' com.sun.star.sheet.XSheetCellRangeContainer
41*b1cdbd2cSJim Jagielski'*************************************************************************
42*b1cdbd2cSJim JagielskiOn Error Goto ErrHndl
43*b1cdbd2cSJim Jagielski    Dim bOK As Boolean
44*b1cdbd2cSJim Jagielski    Dim newAddress As New com.sun.star.table.CellRangeAddress
45*b1cdbd2cSJim Jagielski    Dim newAddress1 As New com.sun.star.table.CellRangeAddress
46*b1cdbd2cSJim Jagielski    Dim newAddresses(1) As Variant
47*b1cdbd2cSJim Jagielski    Dim nCount As Integer
48*b1cdbd2cSJim Jagielski
49*b1cdbd2cSJim Jagielski    Test.StartMethod("addRangeAddress()")
50*b1cdbd2cSJim Jagielski    Test.StartMethod("removeRangeAddress()")
51*b1cdbd2cSJim Jagielski    bOK = true
52*b1cdbd2cSJim Jagielski    nCount = oObj.getCount()
53*b1cdbd2cSJim Jagielski    newAddress.Sheet = 0
54*b1cdbd2cSJim Jagielski    newAddress.StartColumn = 15 : newAddress.EndColumn = 18
55*b1cdbd2cSJim Jagielski    newAddress.StartRow    = 15 : newAddress.EndRow    = 16
56*b1cdbd2cSJim Jagielski    oObj.addRangeAddress(newAddress, false)
57*b1cdbd2cSJim Jagielski    bOK = bOK AND oObj.getCount() = nCount + 1
58*b1cdbd2cSJim Jagielski    oObj.removeRangeAddress(newAddress)
59*b1cdbd2cSJim Jagielski    bOK = bOK AND oObj.getCount() = nCount
60*b1cdbd2cSJim Jagielski    Test.MethodTested("addRangeAddress()", bOK)
61*b1cdbd2cSJim Jagielski    Test.MethodTested("removeRangeAddress()", bOK)
62*b1cdbd2cSJim Jagielski
63*b1cdbd2cSJim Jagielski
64*b1cdbd2cSJim Jagielski    Test.StartMethod("addRangeAddresses()")
65*b1cdbd2cSJim Jagielski    Test.StartMethod("removeRangeAddresses()")
66*b1cdbd2cSJim Jagielski    bOK = true
67*b1cdbd2cSJim Jagielski    newAddress1.Sheet = 0
68*b1cdbd2cSJim Jagielski    newAddress1.StartColumn = 20 : newAddress1.EndColumn = 30
69*b1cdbd2cSJim Jagielski    newAddress1.StartRow    = 20 : newAddress1.EndRow    = 20
70*b1cdbd2cSJim Jagielski    newAddresses(0) = newAddress
71*b1cdbd2cSJim Jagielski    newAddresses(1) = newAddress1
72*b1cdbd2cSJim Jagielski    oObj.addRangeAddresses(newAddresses(), false)
73*b1cdbd2cSJim Jagielski    bOK = bOK AND oObj.getCount() = nCount + 2
74*b1cdbd2cSJim Jagielski    oObj.removeRangeAddresses(newAddresses())
75*b1cdbd2cSJim Jagielski    bOK = bOK AND oObj.getCount() = nCount
76*b1cdbd2cSJim Jagielski    Test.MethodTested("removeRangeAddresses()", bOK)
77*b1cdbd2cSJim Jagielski    Test.MethodTested("addRangeAddresses()", bOK)
78*b1cdbd2cSJim Jagielski
79*b1cdbd2cSJim JagielskiExit Sub
80*b1cdbd2cSJim JagielskiErrHndl:
81*b1cdbd2cSJim Jagielski    Test.Exception()
82*b1cdbd2cSJim Jagielski    bOK = false
83*b1cdbd2cSJim Jagielski    resume next
84*b1cdbd2cSJim JagielskiEnd Sub
85*b1cdbd2cSJim Jagielski</script:module>
86