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="sw_SwXBookmark" 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
32' REQUIRED VARIABLES for interface/service tests:
33Global oComponentInstance As Object ' it will be disposed
34Global oXTextContent as Object
35Global oXTextContentRange as Object
36
37
38Sub CreateObj()
39
40'*************************************************************************
41' COMPONENT:
42' sw.SwXBookmark
43'*************************************************************************
44On Error Goto ErrHndl
45
46
47    Dim bOK As Boolean
48    bOK = true
49
50    oDoc = utils.createDocument("swriter", cObjectName)
51
52
53    ' create a textcursor
54    oCursor = oDoc.Text.createTextCursor()
55
56    ' check if objectcreation succeed and write to log
57
58
59    ' write some strings to document
60    for i = 1 to 10
61        oCursor.gotoEnd(false)
62
63        ' Hilfskruecke wegen Bug im Trim oder insertString
64        cTemp = Trim(Str((i)) &amp; cText
65        oDoc.Text.insertString(oCursor, cTemp, false)
66        oDoc.Text.insertControlCharacter(oCursor, 0, false)
67    next i
68
69    oCursor.gotoStart(false)
70    oCursor.gotoNextWord(false)
71
72    ' create a Bookmark and insert it
73    for i = 1 to 3
74
75        oInstance = oDoc.createInstance("com.sun.star.text.Bookmark")
76        ' check if objectcreation succeed and write to log
77
78        ' set name property just for fun
79        oInstance.Name = cObjectName &amp; i
80        oDoc.Text.insertTextContent(oCursor, oInstance, false)
81        oCursor.gotoNextWord(false)
82
83    next i
84
85	oXTextContent = oDoc.createInstance("com.sun.star.text.Bookmark")
86	oXTextContentRange = oDoc.Text.createTextCursor()
87
88    ' create test object and initialize
89    oCollection = oDoc.Bookmarks
90    oObj = oCollection.getByIndex(0)
91    oComponentInstance = oCollection.getByIndex(1)
92    cGlobalString = oCollection.getByIndex(0).Name
93
94
95Exit Sub
96ErrHndl:
97    Test.Exception()
98End Sub
99</script:module>
100