Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
4/8/2010

An enumeration used in calls to the GetWidgetDetailsfunction to specify which item of metadata should be retrieved for a specified widget. Each member of this enumeration represents an XML element or attribute as defined in the widget's XML manifest file. For more detailed information on these elements and attributes, see Windows Windows Mobile Widget Manifest File.

Syntax

enum WidgetDetails
{
		WidgetNamespace,
	WidgetID,
	WidgetVersion,
	WidgetName,
	WidgetDescription,
	WidgetAuthor,
	WidgetAuthorURL,
	WidgetAuthorEmail,
	WidgetIconSource,
	WidgetNetworkAccess,
	WidgetLicense,
	WidgetContentType,
	LastWidgetDetail=WidgetContentType
}

Enumerators

WidgetNamespace

The namespace for the widget.

WidgetID

The unique identifier of the widget.

WidgetVersion

A string specifying the widget's version. Used to support upgrade scenarios.

WidgetName

A user-friendly name for the widget.

WidgetDescription

A description of the widget

WidgetAuthor

The name of the author of the widget.

WidgetAuthorURL

The URL to a site specified by the widget author.

WidgetAuthorEmail

The widget author's email address.

WidgetIconSource

The path to the graphic file that is the icon for the widget.

WidgetNetworkAccess

A boolean value indicating if the widget has access to the network.

WidgetLicense

The license information for the widget.

WidgetContentType

The MIME content type of the widget.

LastWidgetDetail

The MIME content type of the widget.

Remarks

None.