blob: 0b823f10f484973ee67f2f39623ac8587c40e03e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
---
title: VBArray
slug: Archive/Web/JavaScript/Extensions_Microsoft/VBArray
tags:
- JavaScript
- Microsoft
- Non-standard
- Reference
- VBArray
translation_of: Archive/Web/JavaScript/Microsoft_Extensions/VBArray
---
<div>{{JSRef}}{{Non-standard_header}}</div>
<div class="warning"><strong>Attention ! </strong>Cet objet est spécifique à Microsoft et est uniquement pris en charge par Internet Explorer.</div>
<p>L'objet <strong><code>VBArray</code></strong> permet d'accéder à des tableaux Visual Basic.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre>varName = new VBArray(safeArray);</pre>
<h3 id="Paramètres">Paramètres</h3>
<dl>
<dt><code>safeArray</code></dt>
<dd>Une valeur <code>VBArray</code>.</dd>
</dl>
<h3 id="Notes">Notes</h3>
<p>Les tableaux VBArray sont uniquement accessibles en lecture seule et ne peuvent pas être créés directement. L'argument <em>safeArray</em> doit être une valeur VBArray valide. L'obtention d'une telle valeur ne peut se faire que via un contrôle ActiveX ou via un autre objet.</p>
<p>Les tableaux VBArray peuvent avoir plusieurs dimensions, dont chacune a un ensemble d'indices différents.</p>
<h2 id="Exemples">Exemples</h2>
<p>The following example consists of three parts. The first part is VBScript code to create a Visual Basic safe array. The second part is JavaScript code that converts the Visual Basic safe array to a JavaScript array. Both of these parts go into the <HEAD> section of an HTML page. The third part is the JavaScript code that goes in the <BODY> section to run the other two parts.</p>
<pre class="brush: js"><head>
<script type="text/vbscript">
<!--
Function CreateVBArray()
Dim i, j, k
Dim a(2, 2)
k = 1
For i = 0 To 2
For j = 0 To 2
a(j, i) = k
document.writeln(k)
k = k + 1
Next
document.writeln("<br />")
Next
CreateVBArray = a
End Function
-->
</script>
<script type="text/javascript">
<!--
function VBArrayTest(vbarray) {
var a = new VBArray(vbarray);
var b = a.toArray();
var i;
for (i = 0; i < 9; i++) {
console.log(b[i]);
}
}
-->
</script>
</head>
<body>
<script type="text/javascript">
<!--
VBArrayTest(CreateVBArray());
-->
</script>
</body></pre>
<h2 id="Propriétés">Propriétés</h2>
<p>L'objet <code>VBArray</code> ne possède aucune propriété.</p>
<h2 id="Méthodes">Méthodes</h2>
<dl>
<dt><a href="/fr/docs/Web/JavaScript/Microsoft_JavaScript_extensions/VBArray/dimensions"><code>VBArray.dimensions()</code></a></dt>
<dd>Cette méthode renvoie le nombre de dimensions du tableau <code>VBArray</code>.</dd>
<dt><a href="/fr/docs/Web/JavaScript/Microsoft_JavaScript_extensions/VBArray/getItem"><code>VBArray.getItem()</code></a></dt>
<dd>Cette méthode renvoie l'élément à l'emplacement indiqué.</dd>
<dt><a href="/fr/docs/Web/JavaScript/Microsoft_JavaScript_extensions/VBArray/lbound"><code>VBArray.lbound()</code></a></dt>
<dd>Cette méthode renvoie l'indice le plus bas du <code>VBArray</code> pour la dimension indiquée.</dd>
<dt><a href="/fr/docs/Web/JavaScript/Microsoft_JavaScript_extensions/VBArray/toArray"><code>VBArray.toArray()</code></a></dt>
<dd>Cette méthode renvoie un tableau JavaScript standard converti à partir de l'objet <code>VBArray</code>.</dd>
<dt><a href="/fr/docs/Web/JavaScript/Microsoft_JavaScript_extensions/VBArray/ubound"><code>VBArray.ubound()</code></a></dt>
<dd>Cette méthode renvoie l'indice le plus haut du <code>VBArray</code> pour la dimension indiquée.</dd>
</dl>
<h2 id="Prérequis">Prérequis</h2>
<p>Cette fonctionnalité est prise en charge par les modes suivants : Quirks, Internet Explorer 6 en mode standard, Internet Explorer 7 en mode standard, Internet Explorer 8 en mode standard, Internet Explorer 9 en mode standard et Internet Explorer 10 en mode standard. Elle n'est pas prise en charge par les applications Windows 8.x Store.</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li>{{jsxref("Array")}}</li>
</ul>
|