Specifications

Chapter 18 541
COM Interface Reference
SCPI object
18. COM Interface Reference
SCPI object
This section explains details of the SCPI object.
Name property
Explanation Reads object name "SCPI" (Read only)
VB syntax Application.SCPI.Name
or
SCPI.Name
Response Reading in string type. Always "SCPI".
Examples The following is a program example of reading the object name and displaying it in the
message box.
Example 18-16 Example of using Name property
Dim Name As String
Name = Application.SCPI.Name
MsgBox "Object Name : " & Name