blob: 4c2684699229cc9e2c1e0429b09b0b0fc78f6d8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* 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 .
-->
<helpdocument version="1.0">
<meta>
<topic id="textsbasicshared03104400xml" indexer="include" status="PUBLISH">
<title id="tit">HasUnoInterfaces Function</title>
<filename>/text/sbasic/shared/03104400.xhp</filename>
</topic>
<history>
<created date="2003-10-31T00:00:00">Sun Microsystems, Inc.</created>
</history>
</meta>
<body>
<section id="hasunointerfaces">
<bookmark branch="index" id="bm_id3149987"><bookmark_value>HasUnoInterfaces function</bookmark_value>
</bookmark>
<h1 id="hd_id3149987"><link href="text/sbasic/shared/03104400.xhp">HasUnoInterfaces Function</link></h1>
<paragraph role="paragraph" id="par_id3151262">Tests if a Basic Uno object supports certain Uno interfaces.</paragraph>
</section>
<paragraph role="paragraph" id="par_id3154232">Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned.</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#functsyntax"/>
<paragraph role="code" id="par_id3155555">HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#functvalue"/>
<paragraph role="paragraph" localize="false" id="par_id3148538">Bool</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#functparameters"/>
<table id="tab_id951744656264278">
<tablerow>
<tablecell>
<paragraph id="par_id641744656264278" role="tablehead" localize="false"><embedvar href="text/sbasic/shared/00000003.xhp#param_name" markup="ignore"/></paragraph>
</tablecell>
<tablecell>
<paragraph id="par_id511744656264278" role="tablehead" localize="false"><embedvar href="text/sbasic/shared/00000003.xhp#param_type" markup="ignore"/></paragraph>
</tablecell>
<tablecell>
<paragraph id="par_id421744656264278" role="tablehead" localize="false"><embedvar href="text/sbasic/shared/00000003.xhp#param_desc" markup="ignore"/></paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph id="par_id471744656264278" role="tablecontent">oTest</paragraph>
</tablecell>
<tablecell>
<paragraph id="par_id481744656264278" role="tablecontent" localize="false">Object</paragraph>
</tablecell>
<tablecell>
<paragraph id="par_id801744656264278" role="tablecontent">the Basic Uno object that you want to test.</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph id="par_id311744656367084" role="tablecontent">Uno-Interface-Name 1, <br/>Uno-Interface-Name 2, ...</paragraph>
</tablecell>
<tablecell>
<paragraph id="par_id701744656380892" role="tablecontent" localize="false">String</paragraph>
</tablecell>
<tablecell>
<paragraph id="par_id201744656388588" role="tablecontent">Uno interface name(s)</paragraph>
</tablecell>
</tablerow>
</table>
<embed href="text/sbasic/shared/00000003.xhp#functexample"/>
<bascode>
<paragraph role="bascode" id="par_id841744649856206" localize="false">Sub HasInterface</paragraph>
<paragraph role="bascode" id="par_id181744649817277" localize="false"> Dim bHas as Boolean</paragraph>
<paragraph role="bascode" id="par_id1001744649828319" localize="false"> Dim oSheet as Object</paragraph>
<paragraph role="bascode" id="par_id511744649836503" localize="false"> oSheet = ThisComponent.Sheets(0) </paragraph>
<paragraph role="bascode" localize="false" id="par_id3149580"> bHas = HasUnoInterfaces( oSheet, "com.sun.star.beans.XIntrospection" )</paragraph>
<paragraph role="bascode" id="par_id741744649843190" localize="false"> Print bHas ' = True</paragraph>
<paragraph role="bascode" id="par_id41744649848326" localize="false">End Sub</paragraph>
</bascode>
</body>
</helpdocument>
|