ItemFormat Property

The ItemFormat property holds the value used to build an optional ITEMFORMAT CDF element. When the CDF string for an object that has a ItemFormat property is constructed, the property is checked. If it is not null, the <ITEMFORMAT> element is added to the string, with the value of the property set as the contents.

Type

String (VT_BSTR)

Default

Null

Remarks

This element is used by the Mobile Channel channel distribution system to specify how a given ITEM element's associated data file is formatted. These files are used to simplify the presentation of data. If the element is included within a CHANNEL element, the ITEMFORMAT value is "inherited" by all child ITEM elements within.

A complete discussion of this element and its associated functionality is beyond the scope of this documentation. For additional information about XML elements used by the Mobile Channel channel distribution system, see the product documentation and SDK.

Example

VBScript

Set IDispChannel = CreateObject("Push.Channel")
Set IDispItem = IDispChannel.AddItem()
IDispItem.ItemFormat = ";TITLE,PICTURE=IMG,BODY"

© 1997-1998 Microsoft Corporation. All rights reserved.