:SERVice:SWEep:POINts
Description
This command reads out the upper limit of the number of measurement points which is 100000 for all devices.
| Syntax | Response | 
|---|---|
| :SERVice:SWEep:POINts? | < numeric> | 
| Response value | meaning | 
|---|---|
| < numeric> | the maximum number of measurement points. | 
Sample usage
Get the maximum number of measurement (sweep) points (e.g. value for Bode 100).
var visaSession = new TcpipSocket(VISA_RESOURCENAME); visaSession.RawIO.Write(":SERVice:SWEep:POINts?\n"); Console.WriteLine(visaSession.RawIO.ReadString());
Output:
100000
response = visaSession.query(':SERVice:SWEep:POINts?\n') print(response)
Output:
100000