blob: f2d0731ed566a5bab689ed8135db164ba14656a2 (
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
|
---
title: VBArray.dimensions
slug: Archive/Web/JavaScript/Extensions_Microsoft/VBArray/dimensions
tags:
- JavaScript
- Méthode
- Non-standard
- Reference
translation_of: Archive/Web/JavaScript/Microsoft_Extensions/VBArray/dimensions
---
<div>{{JSRef}}{{Non-standard_header}}</div>
<div class="warning"><strong>Attention !</strong> Cette méthode est spécifique à Microsoft et ne fonctionne qu'avec Internet Explorer.</div>
<p>La méthode <strong><code>VBArray.dimensions()</code></strong> renvoie le nombre de dimensions d'un objet {{jsxref("VBArray")}}.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre>monVBArray.dimensions()</pre>
<h2 id="Exemples">Exemples</h2>
<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 s = "";
for (i = 1; i <= a.dimensions() ; i++) {
s += "La borne supérieure de la dimension " + i ";
s += " est " + a.ubound(i) + ".";
}
return s;
}
-->
</script>
</head>
<body>
<script type="text/javascript">
<!--
VBArrayTest(CreateVBArray());
-->
</script>
</body></pre>
<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("VBArray")}}</li>
<li>{{jsxref("VBArray.getItem()")}}</li>
<li>{{jsxref("VBArray.lbound()")}}</li>
<li>{{jsxref("VBArray.ubound()")}}</li>
<li>{{jsxref("VBArray.toArray()")}}</li>
<li><a href="/fr/docs/Web/JavaScript/Extensions_JavaScript_Microsoft">Les extensions JavaScript spécifiques de Microsoft</a></li>
</ul>
|