LibreOffice 7.2 Help
Geeft Waar terug als de twee gegeven BASIC-Uno-objecten dezelfde Uno-objectverzameling vertegenwoordigen.
EqualUnoObjects( oObj1, oObj2 )
Booleaans
' Kopiëren van objecten -> dezelfde verzameling
oIntrospection = CreateUnoService( "com.sun.star.beans.Introspection" )
oIntro2 = oIntrospection
print EqualUnoObjects( oIntrospection, oIntro2 )
' Kopiëren van structs als waarde -> nieuw exemplaar
Dim Struct1 as new com.sun.star.beans.Property
Struct2 = Struct1
print EqualUnoObjects( Struct1, Struct2 )