HasUnoInterfaces Fonksiyonu

Bir Basic Uno nesnesinin belirli Uno arayüzlerini destekleyip desteklemediğini test eder.

Eğer bütün belirtilmiş Uno arayüzleri destekleniyorsa True, aksi halde False döndürülür.

Sözdizimi:

HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])

Return type:

Bool

Parametreler:

Name

Type

Description

oTest

Object

the Basic Uno object that you want to test.

Uno-Interface-Name 1,
Uno-Interface-Name 2, ...

String

Uno interface name(s)


Örnek:


Sub HasInterface
    Dim bHas as Boolean
    Dim oSheet as Object
    oSheet = ThisComponent.Sheets(0) 
    bHas = HasUnoInterfaces( oSheet, "com.sun.star.beans.XIntrospection" )
    Print bHas ' = True
End Sub

Lütfen bizi destekleyin!