ArcPad Scripting Object Model
Fields Property
See Also  Send comments on this topic.
Recordset Collection : Fields Property

Glossary Item Box

Description

Returns the current record's fields.

Property type

Read-only property

Syntax

Set variable = object.Fields

Return Type

Fields Object

Remarks

The Fields property is the default property for the RecordSet object. Therefore, the following two lines of code will yield the same result:

       Set objFld1 = Map.Layers(1).Records.Fields("Field1")
       Set objFld1 = Map.Layers(1).Records("Field1")

Example

See Also

© 2013 All Rights Reserved.