LibreOffice 7.1 Bantuan
Mengembalikan nilai True jika dua objek dasar Uno yang ditentukan mewakili sampel objek Uno yang sama.
EqualUnoObjects( oObj1, oObj2 )
Bool
' Salinan objek -> contoh yang sama
oIntrospection = CreateUnoService( "com.sun.star.beans.Introspection" )
oIntro2 = oIntrospection
print EqualUnoObjects( oIntrospection, oIntro2 )
' Salin struktur sebagai nilai -> contoh baru
Dim Struct1 as new com.sun.star.beans.Property
Struct2 = Struct1
print EqualUnoObjects( Struct1, Struct2 )