XmlString

Gets or sets the state of the HFMwMbrSel instance using the Point of View settings in an XML string.

You can persist a Point of View representing the current state of the HFMwMbrSel instance by passing the XML string to HFMwSession.SetPOVByTag. You can set an HFMwMbrSel instance to a persisted Point of View by setting xmlString to the string returned by HFMwSession.GetPOVByTag.

Read-write.

Example

The following subroutine persists a Point of View. The subroutine takes the tag that identifies the Point of View and the labels of the dimension members, which are set with the AttrAllproperty. The Point of View is persisted with the HFMwSession methods SetPOVByTag and ApplyUserSettings.

Sub CreatePOVTag(sTag, aDimVals)
Dim cMbrSel
Set cMbrSel = Server.CreateObject("Hyperion.HFMwMbrSel")
'g_cSession is an HFMwSession object
cMbrSel.SetWebSession g_cSession
cMbrSel.AttrAll(WEBOM_MBRSEL_ID_VALUE) = aDimVals
g_cSession.SetPOVByTag sTag, FALSE, cMbrSel.XmlString
g_cSession.ApplyUserSettings TRUE
End Sub