Remarks | Properties | Methods | Samples |
ED
|
not used
|
RT
|
avaliable
|
With this object it is possible to get all CEL entries are in
memory. You are able to read all properties of each item...
Hint:
The Filter should be set always like "*", because this feature is
implemented for future and does not work for now.
Count | Parent |
Item |
'########################################################## '### Get all CEL Items of the project ### '########################################################## Public Sub GetAllItems() Dim i As Integer 'get all items in memory... For i = 0 To thisProject.Cel.CelItems("*").Count - 1 'print text of item to outputwindow Debug.Print thisProject.Cel.CelItems("*").Item(i).Text Next i End Sub