ListFieldRatingScale Object

Microsoft FrontPage Visual Basic

ListFieldRatingScale Object

ListFieldRatingScale Web

Contains information about the rating scale list field for a list in a Microsoft FrontPage Web site. The ListFeldRatingScale object is only available for survey lists.

This object is supported only by Web pages or sites that are based on Microsoft Windows SharePoint Services.

Using the ListFieldRatingScale Object

Use the Item property for the ListFields collection to return a single ListFieldRatingScale object. The following example returns the first field in the first list in the Lists collection. This example assumes that the first list in the active Web is a Web survey list.

    Dim objList As BasicList
Dim objField As ListFieldRatingScale

Set objList = ActiveWeb.Lists(0)
Set objField = objList.Fields(0)