A Field object represents a MAPI property on a Microsoft® CDO Library object.
Specified in type library: | CDO.DLL |
First available in: | CDO Library version 1.0.a |
Parent objects: | Fields collection |
Child objects: | (none) |
Default property: | Value |
Name |
Available since version | Type |
Access |
---|---|---|---|
Application | 1.0.a | String | Read-only |
Class | 1.0.a | Long | Read-only |
ID | 1.0.a | Long | Read-only |
Index | 1.0.a | Long | Read-only |
Name | 1.0.a | String | Read-only |
Parent | 1.0.a | Fields collection object | Read-only |
Session | 1.0.a | Session object | Read-only |
Type | 1.0.a | Integer | Read-only |
Value | 1.0.a | Variant | Read/write |
Name |
Available since version | Parameters |
---|---|---|
Delete | 1.0.a | (none) |
ReadFromFile | 1.0.a | fileName as String |
WriteToFile | 1.0.a | fileName as String |
The Field object gives you the ability to access MAPI properties on an AddressEntry, AddressEntryFilter, AddressList, AppointmentItem, Attachment, Folder, InfoStore, MeetingItem, Message, or MessageFilter object. The properties can be predefined MAPI properties or custom named properties.
You do not have to add a predefined property to the Fields collection in order to access it. You can set it or read its value by simply supplying its property tag to the collection's Item property. To access a custom property, you normally have to use the Fields collection's Add method to establish access to the property.
You can add additional properties tailored for your specific application to the Fields collection. Before adding a field for an eligible object, review the properties that are already provided by CDO. Many of the most common ones are already offered. For example, Subject and Importance are already defined as Message object properties.
Data types are preserved between MAPI properties and CDO fields, with the exception of MAPI properties of type PT_BINARY. These are converted from counted binary in MAPI to character string representation in CDO, where the characters in the string represent the hexadecimal digits of the MAPI property value. The string is converted back into counted binary when you write to the field.
Note that the predefined MAPI properties are unnamed when they are accessed through Field objects. For these MAPI properties, the Name property is an empty string.
The Field object also supports multivalued MAPI properties. The multivalued property appears to the Microsoft® Visual Basic® application as a variant array; that is, you can use the For ... Next statement to access individual array entries, as shown in this code fragment:
Dim rgstr(0 To 9) As String
' Build array of values for MV prop
For i = 0 To 9
rgstr(i) = "String" + Str(i)
Next
' Create MV field on the message (note that we don't specify
' the array as third argument to Fields.Add, but add separately)
Set f = msg.Fields.Add("FancyName", vbString + vbArray)
f.Value = rgstr ' Set value of the new field
' Save/send the message, logoff, etc.
' later: code that reads the multivalued properties
Dim rgstr As Variant
Set f = msg.Fields.Item("FancyName") ' Get MV Field
rgstr = f.Value ' Get array of values into a variant
For i = LBound(rgret) To UBound(rgret)
MsgBox rgret(i)
Next I
For more information on MAPI properties, see the reference documentation for the Fields collection and the MAPI Programmer's Reference.