From 61173c1b58efa79c0ba6b08348d2796a249d0186 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sat, 1 Sep 2012 09:51:27 -0500 Subject: move help structure one directory up Change-Id: Ie970e39fbb6795a92d9fdd13510409d7dcd071bc --- source/text/sbasic/shared/03104500.xhp | 71 ++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 source/text/sbasic/shared/03104500.xhp (limited to 'source/text/sbasic/shared/03104500.xhp') diff --git a/source/text/sbasic/shared/03104500.xhp b/source/text/sbasic/shared/03104500.xhp new file mode 100644 index 0000000000..88c8393dcf --- /dev/null +++ b/source/text/sbasic/shared/03104500.xhp @@ -0,0 +1,71 @@ + + + + + + + + +IsUnoStruct Function [Runtime] +/text/sbasic/shared/03104500.xhp + + +Sun Microsystems, Inc. +converted from old format - fpe + + + +
+IsUnoStruct function + +IsUnoStruct Function [Runtime] +Returns True if the given object is a Uno struct. +
+Syntax: +IsUnoStruct( Uno type ) +Return value: +Bool +Parameters: +Uno type : A UnoObject +Example: +Sub Main +Dim bIsStruct +' Instantiate a service +Dim oSimpleFileAccess +oSimpleFileAccess = CreateUnoService( "com.sun.star.ucb.SimpleFileAccess" ) +bIsStruct = IsUnoStruct( oSimpleFileAccess ) +MsgBox bIsStruct ' Displays False because oSimpleFileAccess is NO struct +' Instantiate a Property struct +Dim aProperty As New com.sun.star.beans.Property +bIsStruct = IsUnoStruct( aProperty ) +MsgBox bIsStruct ' Displays True because aProperty is a struct +bIsStruct = IsUnoStruct( 42 ) +MsgBox bIsStruct ' Displays False because 42 is NO struct +End Sub + +
-- cgit v1.2.3