showsDescriptions

Gets or sets whether member descriptions are displayed on pages in which the user sets the Point of View. TRUE means the descriptions are displayed, FALSE means they are not displayed.

Read-write.

Example

The following subroutine sets whether member descriptions are displayed and persists the setting. The subroutine’s argument is passed to showsDescriptions, and then ApplyUserSettings persists the setting.

Sub persistShowDesc(bShow)
cHFMSession.showsDescriptions = bShow
cHFMSession.ApplyUserSettings TRUE
End Sub