עזרה עבור LibreOffice 24.8
Determines if a variable is a data field in an array.
IsArray (Var)
Boolean
\<emph\>Var:\</emph\> Any variable that you want to test if it is declared as an array. If the variable is an array, then the function returns \<emph\>True\</emph\>, otherwise \<emph\>False \</emph\>is returned.
Sub ExampleIsArray
Dim sDatf(10) As String
Print isarray(sdatf())
End Sub