VBArray : VBArray : MS JScript JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » MS JScript » VBArray »

 

VBArray











Syntax








var variable = new VBArray(vbarray)



The VBArray object provides access to Visual Basic safeArrays.

Methods of the VBArray Object



























Method Description
dimensions() Returns the number of dimensions in the array
getItem() Returns the item at a specified location
lbound() Returns the lowest index value of the dimension in the array
toArray() Returns a JScript array from the VBArray passed
ubound() Returns the highest index value of the dimension in the array















<html>
    <script LANGUAGE="VBScript">
    <!--
    Function myVBArray()
      Dim i
      Dim j
      Dim k
      k = 1
      Dim myArray(11)

      For i = To 1
        For j = To 1
          myArray(j, i= k
          document.writeln(k)
          k = k + 1
        Next
        document.writeln("<hr>")
      Next
      myVBArray = myArray
    End Function
    ' End Hide -->
    </script>
    <script language="JScript">
    <!--
    var myArray = new VBArray(myVBArray());
    -->

    </script>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo MS JScript
» VBArray