EqualUnoObjects Function [Runtime]/text/sbasic/shared/03104600.xhpSun Microsystems, Inc.converted from old format - fpeEqualUnoObjects functionEqualUnoObjects Function [Runtime]Returns True if the two specified Basic Uno objects represent the same Uno object instance.Syntax:EqualUnoObjects( oObj1, oObj2 )Return value:BoolExample:// Copy of objects -> same instanceoIntrospection = CreateUnoService( "com.sun.star.beans.Introspection" )oIntro2 = oIntrospectionprint EqualUnoObjects( oIntrospection, oIntro2 )// Copy of structs as value -> new instanceDim Struct1 as new com.sun.star.beans.PropertyStruct2 = Struct1print EqualUnoObjects( Struct1, Struct2 )