Returns the selection string for the style sheet rule. Read/write String.
This example retrieves the selector text from the first style sheet rule.
Note You must have a style sheet attached to an open document.
Private Sub GetSelectorText()
Dim myRule As IHTMLStyleSheetRule
Dim myText As String
Set myRule = ActiveDocument.styleSheets(0).rules(0)
myText = myRule.selectorText
End Sub