From b223ac4af159aa84c25be88a478103402bbecd27 Mon Sep 17 00:00:00 2001 From: LibreOļ¬ƒciant Date: Fri, 6 Dec 2019 11:50:34 +0200 Subject: IsObject returns True for extented types too Change-Id: If34385312976485b30efc60d6ffbfce9617d7d0a Reviewed-on: https://gerrit.libreoffice.org/84606 Tested-by: Jenkins Reviewed-by: Olivier Hallot --- source/text/sbasic/shared/03102800.xhp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/source/text/sbasic/shared/03102800.xhp b/source/text/sbasic/shared/03102800.xhp index 920c3b1773..bc884e18a9 100644 --- a/source/text/sbasic/shared/03102800.xhp +++ b/source/text/sbasic/shared/03102800.xhp @@ -33,19 +33,18 @@ IsObject function IsObject Function -Tests if an object variable is an object (as opposed to, e.g. string). The function returns True if the variable is an object, otherwise it returns False. +Tests if a variable is an object, as opposed to primitive data types such as dates, numbers, texts. The function returns True if the variable is an object, otherwise it returns False. Syntax: -IsObject (ObjectVar) +IsObject (var) Return value: -Bool +Boolean Parameters: -ObjectVar: Any variable that you want to test. If the ObjectVar variable contains an object, the function returns True. +var: Any variable that you want to test. If the var variable contains an extended type, object instance or OLE Object, the function returns True. - - + \ No newline at end of file -- cgit