Fields

<< Click to Display Table of Contents >>

 

Fields

Link This property returns an object that represents a collection of Fields created in a Storage and it is a read-only property. For more information about the collection returned by this property, please check topic Fields.

 

NOTES

In applications created before E3 version 5.0, the Fields property is a collection that supports the Item method to access the available Fields. Starting with version 5.0, this property also returns an object, and therefore the way to access Fields is different for both ways. The next example shows the correct way to use this property.

Applications saved in version 5.0 convert Storage objects from a collection format to an object and CANNOT be opened in previous versions anymore.

 

To access the collection of Storage Fields as a collection as well as an object, use the syntax described in the next example.

'This application contains an object called Storage1
'that contains a Field called Field1.
'To access this Field from a collection,
'use the following syntax:
Set collectionField = Application.GetObject("Storage1").Fields.Item("Field1")
'To access the same Field as an object,
'use the following syntax:
Set nativeField = Application.GetObject("Storage.Fields.Field1")

Was this page useful?