blob: bb7fc5f9cab9ad075612a6a7b1efc0ca37c9bc3d [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="sheet_XSheetCellCursor" script:language="StarBasic">
'*************************************************************************
'
' Licensed to the Apache Software Foundation (ASF) under one
' or more contributor license agreements. See the NOTICE file
' distributed with this work for additional information
' regarding copyright ownership. The ASF licenses this file
' to you under the Apache License, Version 2.0 (the
' "License"); you may not use this file except in compliance
' with the License. You may obtain a copy of the License at
'
' http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing,
' software distributed under the License is distributed on an
' "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
' KIND, either express or implied. See the License for the
' specific language governing permissions and limitations
' under the License.
'
'*************************************************************************
' Be sure that all variables are dimensioned:
option explicit
Sub RunTest()
'*************************************************************************
' INTERFACE:
' com.sun.star.sheet.XSheetCellCursor
'*************************************************************************
On Error Goto ErrHndl
Dim bOK As Boolean
Dim nCols As Integer, nRows As Long
Dim ResetCols As Integer, ResetRows As Long
Dim oRange As Variant
ResetCols = oObj.getColumns().getCount()
ResetRows = oObj.getRows().getCount()
Test.StartMethod("collapseToCurrentRegion()")
bOK = true
oObj.collapseToCurrentRegion()
nCols = oObj.getColumns().getCount()
nRows = oObj.getRows().getCount()
bOK = bOK AND (nCols &gt; 0) AND (nRows &gt; 0)
Out.Log("collapseToCurrentRegion(): nCols = " &amp; nCols &amp; "(&gt;0) nRows = " &amp; nRows &amp; "(&gt;0)")
Test.MethodTested("collapseToCurrentRegion()", bOK)
'collapseToMergedArea goes into the area. But you must be insite
' of one cell of these area
Test.StartMethod("collapseToMergedArea()")
bOK = true
oObj.collapseToSize(5,6)
oRange = oObj.getCellRangeByPosition(0,0,2,2)
oRange.merge(true)
oObj.gotoStart()
oObj.collapseToMergedArea()
nCols = oObj.getColumns().getCount()
nRows = oObj.getRows().getCount()
bOK = bOK AND (nCols = 3) AND (nRows = 3)
Out.Log("collapseToMergedArea(): nCols = " &amp; nCols &amp; "(3) nRows = " &amp; nRows &amp; "(3)")
Test.MethodTested("collapseToMergedArea()", bOK)
oRange.merge(false)
Test.StartMethod("collapseToSize()")
bOK = true
oObj.collapseToSize(5,6)
nCols = oObj.getColumns().getCount()
nRows = oObj.getRows().getCount()
bOK = bOK AND (nCols = 5 ) AND (nRows = 6)
Out.Log("collapseToSize(): nCols = " &amp; nCols &amp; "(5) nRows = " &amp; nRows &amp; "(6)")
Test.MethodTested("collapseToSize()", bOK)
Test.StartMethod("collapseToCurrentArray()")
oObj.collapseToSize(5,6)
oRange = oObj.getCellRangeByPosition(0,0,2,3)
oRange.setArrayFormula("A1:A3")
bOK = true
oObj.collapseToCurrentArray()
nCols = oObj.getColumns().getCount()
nRows = oObj.getRows().getCount()
bOK = bOK AND (nCols = 3) AND (nRows = 4)
Out.Log("collapseToCurrentArray(): nCols = " &amp; nCols &amp; "(3) nRows = " &amp; nRows &amp; "(4)")
Test.MethodTested("collapseToCurrentArray()", bOK)
oRange.setArrayFormula("")
Test.StartMethod("expandToEntireColumns()")
bOK = true
oObj.collapseToSize(1,1)
oObj.expandToEntireColumns()
nCols = oObj.getColumns().getCount()
nRows = oObj.getRows().getCount()
bOK = bOK AND (nCols = 1) AND (nRows &gt;= 32000)
Out.Log("expandToEntireColumns(): nCols = " &amp; nCols &amp; "(1) nRows = " &amp; nRows &amp; "(&gt;=32000)")
Test.MethodTested("expandToEntireColumns()", bOK)
Test.StartMethod("expandToEntireRows()")
bOK = true
oObj.collapseToSize(1,1)
oObj.expandToEntireRows()
nCols = oObj.getColumns().getCount()
nRows = oObj.getRows().getCount()
bOK = bOK AND (nCols &gt;= 256) AND (nRows = 1)
Out.Log("expandToEntireRows(): nCols = " &amp; nCols &amp; "(&gt;=256) nRows = " &amp; nRows &amp; "(1)")
Test.MethodTested("expandToEntireRows()", bOK)
Out.Log("Reset to old range: " &amp; ResetCols &amp; "," &amp; ResetRows)
oObj.collapseToSize(ResetCols, ResetRows)
Exit Sub
ErrHndl:
Test.Exception()
bOK = false
resume next
End Sub
</script:module>