Author Topic: Microsoft Access Function Library: IsArray()  (Read 1419 times)

bbasujon

  • Administrator
  • VIP Member
  • *****
  • Posts: 1827
  • I want to show my performance at any where
    • View Profile
    • Higher Education
Microsoft Access Function Library: IsArray()
« on: August 15, 2012, 05:19:48 PM »
Function: IsArray()

Purpose: The IsArray function returns a value of true if the referenced variable is an array. Otherwise, it returns false.

Usage: IsArray(variable_name)

Where variable_name is the name of the variable you wish to test.

Returns: True if the referenced variable is an array; False otherwise.

Example

 TestArray = Array(1,2,3)
 TestInt = Int(1)
 IsArray(TestArray) returns True
 IsArray(TestInt) returns False
Acquire the knowledge and share the knowledge so that knowing,learning then sharing - all are the collection