<?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="drawing_MeasureProperties" 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()

'*************************************************************************
' SERVICE: 
' com.sun.star.drawing.MeasureProperties
'*************************************************************************
On Error Goto ErrHndl

    Dim bOK As Boolean

    PropertyTester.TestProperty("MeasureBelowReferenceEdge")

    PropertyTester.TestProperty("MeasureHelpLine1Length")

    PropertyTester.TestProperty("MeasureHelpLine2Length")

    PropertyTester.TestProperty("MeasureHelpLineDistance")

    PropertyTester.TestProperty("MeasureHelpLineOverhang")

    Test.StartMethod("MeasureKind")
    bOK = true

    oObj.MeasureKind = com.sun.star.drawing.MeasureKind.STANDARD
    bOK = bOK AND oObj.MeasureKind = com.sun.star.drawing.MeasureKind.STANDARD

    oObj.MeasureKind = com.sun.star.drawing.MeasureKind.RADIUS
    bOK = bOK AND oObj.MeasureKind = com.sun.star.drawing.MeasureKind.RADIUS

    Test.MethodTested("MeasureKind", bOK)

    PropertyTester.TestProperty("MeasureLineDistance")

    PropertyTester.TestProperty("MeasureOverhang")

    PropertyTester.TestProperty("MeasureShowUnit")

    PropertyTester.TestProperty("MeasureTextAutoAngle")

    PropertyTester.TestProperty("MeasureTextAutoAngleView")

    PropertyTester.TestProperty("MeasureTextFixedAngle")

    Test.StartMethod("MeasureTextHorizontalPosition")
    bOK = true

    oObj.MeasureTextHorizontalPosition = com.sun.star.drawing.MeasureTextHorzPos.AUTO
    bOK = bOK AND oObj.MeasureTextHorizontalPosition = com.sun.star.drawing.MeasureTextHorzPos.AUTO

    oObj.MeasureTextHorizontalPosition = com.sun.star.drawing.MeasureTextHorzPos.LEFTOUTSIDE
    bOK = bOK AND oObj.MeasureTextHorizontalPosition = com.sun.star.drawing.MeasureTextHorzPos.LEFTOUTSIDE

    Test.MethodTested("MeasureTextHorizontalPosition", bOK)

    Test.StartMethod("MeasureTextVerticalPosition")
    bOK = true

    oObj.MeasureTextVerticalPosition = com.sun.star.drawing.MeasureTextVertPos.AUTO
    bOK = bOK AND oObj.MeasureTextVerticalPosition = com.sun.star.drawing.MeasureTextVertPos.AUTO

    oObj.MeasureTextVerticalPosition = com.sun.star.drawing.MeasureTextVertPos.EAST
    bOK = bOK AND oObj.MeasureTextVerticalPosition = com.sun.star.drawing.MeasureTextVertPos.EAST

    Test.MethodTested("MeasureTextVerticalPosition", bOK)

    PropertyTester.TestProperty("MeasureTextIsFixedAngle")

    PropertyTester.TestProperty("MeasureTextRotate90")

    PropertyTester.TestProperty("MeasureTextUpsideDown")

    PropertyTester.TestProperty("MeasureDecimalPlaces")

Exit Sub
ErrHndl:
    Test.Exception()
    bOK = false
    resume next
End Sub
</script:module>
