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_SwXTextSection" 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
36' REQUIRED VARIABLES for interface/service tests:
37
38' Requiered for  com.sun.star.container.XNamed
39 Global cNameToSet As String ' "fixed" if name is fixed
40
41' Requiered for  com.sun.star.lang.XComponent
42 Global oComponentInstance As Object ' it will be disposed
43
44Global oXTextContent as Object
45Global oXTextContentRange as Object
46
47
48Sub CreateObj()
49
50'*************************************************************************
51' COMPONENT:
52' sw.SwXTextSection
53'*************************************************************************
54On Error Goto ErrHndl
55    Dim bOK As Boolean
56    Dim oInstance As Object, oCursor As Object, oSectionText As Object
57
58    bOK = true
59
60    oDoc = utils.createDocument("swriter", cObjectName)
61
62    oCursor = oDoc.Text.createTextCursor()
63
64    oInstance = oDoc.createInstance("com.sun.star.text.TextSection")
65    oInstance.Name = cObjectName + "1"
66    oDoc.Text.insertTextContent(oCursor, oInstance, false)
67    oComponentInstance = oInstance
68
69    oInstance = oDoc.createInstance("com.sun.star.text.TextSection")
70    oInstance.Name = cObjectName + "2"
71    oDoc.Text.insertTextContent(oCursor, oInstance, false)
72    oCursor = oDoc.Text.createTextCursorByRange(oInstance.Anchor)
73    oDoc.Text.insertString(oCursor, "TextSection 2", false)
74    oCursor.gotoPreviousWord(false)
75
76    oInstance = oDoc.createInstance("com.sun.star.text.TextSection")
77    oInstance.Name = cObjectName + "3"
78    oDoc.Text.insertTextContent(oCursor, oInstance, false)
79    oCursor = oDoc.Text.createTextCursorByRange(oInstance.Anchor)
80    oDoc.Text.insertString(oCursor, "TextSection 3", false)
81    oCursor.gotoPreviousWord(false)
82
83    oObj = oInstance
84
85    oInstance = oDoc.createInstance("com.sun.star.text.TextSection")
86    oInstance.Name = cObjectName + "4"
87    oDoc.Text.insertTextContent(oCursor, oInstance, false)
88    oCursor = oDoc.Text.createTextCursorByRange(oInstance.Anchor)
89    oDoc.Text.insertString(oCursor, "TextSection 4", false)
90
91	oXTextContent = oDoc.createInstance("com.sun.star.text.TextSection")
92	oXTextContentRange = oDoc.Text.createTextCursor()
93
94Exit Sub
95ErrHndl:
96    Test.Exception()
97End Sub
98</script:module>
99