For Each
En
Gambas vous pouvez facilement enumérer le contenu d'un tableau, d'une collection, ou de toute autre classe enumérable, avec l'instruction
For Each .
Par exemple :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| DIM Xml AS NEW XmlDocument DIM Node AS XmlNode DIM I AS INTEGER
' Ouverture du fichier XML Xml.Open("pokus.xml") ' Les noeuds enfants sont indexés avec [I], car il s'agit ' d'un tableau FOR I = 0 TO Xml.Root.Children.Count - 1 ' Les attributs sont énumérés avec For Each, car il s'agit ' d'une collection FOR EACH Node IN Xml.Root.Children[i].Attributes PRINT Node.Name;; Node.Value NEXT NEXT
|
====================
Navigation :
<-- Liens du Wiki : <--<-- Sommaire du WIKI : <-- ====================
Documentation :
==============================