'************************************************************************* ' ' 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 ' REQUIRED VARIABLES for interface/service tests: ' Required for com.sun.star.container.XIndexContainer Global oInstance As Object 'for InsertByName ' Required for XIndexReplace Global oIdxReplaceInstance As Object Sub CreateObj() '************************************************************************* ' COMPONENT: ' sd.SdXCustomPresentation '************************************************************************* On Error Goto ErrHndl Dim oPresentations As Object Dim oPresentation As Object Dim oDrawPages As Object oDoc = utils.createImpressDocument(cObjectName) oPresentations = oDoc.getCustomPresentations() oDrawPages = oDoc.getDrawPages oDrawPages.insertNewByIndex(oDrawPages.getCount()) oDrawPages.insertNewByIndex(oDrawPages.getCount()) oDrawPages.insertNewByIndex(oDrawPages.getCount()) oDrawPages.insertNewByIndex(oDrawPages.getCount()) oPresentation = oPresentations.createInstance() oPresentations.insertByName(cObjectName, oPresentation) oIdxReplaceInstance = oDrawPages.getByIndex(3) oObj = oPresentations.getByName(oPresentations.elementNames(0)) oObj.insertByIndex(oObj.Count, oDrawPages.getByIndex(0)) oObj.insertByIndex(oObj.Count, oDrawPages.getByIndex(1)) oObj.insertByIndex(oObj.Count, oDrawPages.getByIndex(2)) oInstance = oDrawPages.getByIndex(3) Exit Sub ErrHndl: Test.Exception() End Sub