From ff39701b0e841035089929ab7811c7431ab9b39b Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Thu, 15 Nov 2012 11:10:24 +0100 Subject: format Basic code examples --- source/text/sbasic/shared/03102200.xhp | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'source/text/sbasic/shared/03102200.xhp') diff --git a/source/text/sbasic/shared/03102200.xhp b/source/text/sbasic/shared/03102200.xhp index 8fc1189909..937be635be 100644 --- a/source/text/sbasic/shared/03102200.xhp +++ b/source/text/sbasic/shared/03102200.xhp @@ -47,7 +47,9 @@ Determines if a variable is a data field in an array. Syntax: -IsArray (Var) + +IsArray (Var) + Return value: Bool Parameters: @@ -56,9 +58,11 @@ Example: -Sub ExampleIsArray -Dim sDatf(10) as String -print isarray(sdatf()) -end Sub + +Sub ExampleIsArray +Dim sDatf(10) As String + Print isarray(sdatf()) +End Sub + -- cgit