Description: IsArray() Function determines whether the specified variable is array or not and based upon that returns the Boolean value. Format: IsArray(varVariable) Arguments: varVariable Mandatory IsArray() function evaluates this string. Example: Function FnIsArray() Dim arrA(5) Dim arrB Dim strResult strResult = "arrA(5) is an Array: " & IsArray(arrA) & vbCrLf strResult = strResult … Read More →
↧