1408a4873SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3408a4873SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4408a4873SAndrew Rist * or more contributor license agreements. See the NOTICE file 5408a4873SAndrew Rist * distributed with this work for additional information 6408a4873SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7408a4873SAndrew Rist * to you under the Apache License, Version 2.0 (the 8408a4873SAndrew Rist * "License"); you may not use this file except in compliance 9408a4873SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11408a4873SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13408a4873SAndrew Rist * Unless required by applicable law or agreed to in writing, 14408a4873SAndrew Rist * software distributed under the License is distributed on an 15408a4873SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16408a4873SAndrew Rist * KIND, either express or implied. See the License for the 17408a4873SAndrew Rist * specific language governing permissions and limitations 18408a4873SAndrew Rist * under the License. 19cdf0e10cSrcweir * 20408a4873SAndrew Rist *************************************************************/ 21408a4873SAndrew Rist 22408a4873SAndrew Rist 23cdf0e10cSrcweir#ifndef __com_sun_star_bridge_oleautomation_PropertyPutArgument_idl__ 24cdf0e10cSrcweir#define __com_sun_star_bridge_oleautomation_PropertyPutArgument_idl__ 25cdf0e10cSrcweir 26cdf0e10cSrcweir 27cdf0e10cSrcweirmodule com { module sun { module star { module bridge { module oleautomation { 28cdf0e10cSrcweir 29cdf0e10cSrcweir/** contains a value that is used as argument in a "property put" 30cdf0e10cSrcweir operation on a Automation object. 31cdf0e10cSrcweir <p> 32cdf0e10cSrcweir If a Automation object is converted into a UNO object by a scripting 33cdf0e10cSrcweir bridge, such as 34cdf0e10cSrcweir <type scope="com::sun::star::bridge::oleautomation">BridgeSupplier</type>, 35cdf0e10cSrcweir then it is accessed through the 36cdf0e10cSrcweir <type scope="com::sun::star::script">XInvocation</type> interface. 37cdf0e10cSrcweir The methods 38cdf0e10cSrcweir <member scope="com::sun::star::script">XInvocation::setValue</member> 39cdf0e10cSrcweir and 40cdf0e10cSrcweir <member scope="com::sun::star::script">XInvocation::getValue</member> 41cdf0e10cSrcweir are used to access properties which do not have additional 42cdf0e10cSrcweir arguments. To access a property with additional arguments, the 43cdf0e10cSrcweir method 44cdf0e10cSrcweir <member scope="com::sun::star::script">XInvocation::invoke</member> 45cdf0e10cSrcweir has to be used. The method implementation must decide, if the 46cdf0e10cSrcweir property is to be written or read so it can perform the proper 47cdf0e10cSrcweir operation on the Automation object. To make this decision, the 48cdf0e10cSrcweir caller has to provide the information if the current call is 49cdf0e10cSrcweir intended to be a write or read operation. This is done by 50cdf0e10cSrcweir providing either instances of <type>PropertyPutArgument</type> or 51cdf0e10cSrcweir <type>PropertyGetArgument</type> as arguments to 52cdf0e10cSrcweir <member scope="com::sun::star::script">XInvocation::Invoke</member>. 53cdf0e10cSrcweir 54*95a17a32SJürgen Schmidt @since OpenOffice 1.1.2 55cdf0e10cSrcweir*/ 56cdf0e10cSrcweirstruct PropertyPutArgument 57cdf0e10cSrcweir{ 58cdf0e10cSrcweir /** contains the actual argument. 59cdf0e10cSrcweir */ 60cdf0e10cSrcweir any Value; 61cdf0e10cSrcweir}; 62cdf0e10cSrcweir 63cdf0e10cSrcweir}; }; }; }; }; 64cdf0e10cSrcweir 65cdf0e10cSrcweir 66cdf0e10cSrcweir#endif 67