Range.Scripts property (Word)
Returns a Scripts collection that represents the collection of HTML scripts in the specified object.
Syntax
expression. Scripts
expression Required. A variable that represents a Range object.
Example
This example tests the second Script object in the specified range to determine its language.
Select Case Selection.Range.Scripts(2).Language
Case msoScriptLanguageASP
MsgBox "Active Server Pages"
Case msoScriptLanguageVisualBasic
MsgBox "VBScript"
Case msoScriptLanguageJava
MsgBox "JavaScript"
Case msoScriptLanguageOther
MsgBox "Unknown type of script"
End Select
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.