Technical data

Table Of Contents
Acquire Commands 9
Agilent Infiniium 9000 Series Oscilloscopes Programmer's Reference 163
:ACQuire:SEGMented:COUNt
Command :ACQuire:SEGMented:COUNt <#segments>
The :ACQuire:SEGMented:COUNt command sets the number of segments to
acquire in the segmented memory mode.
<#segments> An integer representing the number of segments to acquire.
Example This example sets the segmented memory count control to 1000.
myScope.WriteString ":ACQUIRE:SEGMented:COUNt 1000"
Query :ACQuire:SEGMented:COUNt?
The :ACQuire:SEGMented:COUNT? query returns the number of segments
control value.
Returned Format
[:ACQuire:SEGMented:COUNt] <#segments><NL>
Example This example checks the current setting for segmented memory count
control and places the result in the variable, varSegments. Then the
program prints the contents of the variable to the computer's screen.
myScope.WriteString ":SYSTEM:HEADER OFF"
myScope.WriteString ":ACQUIRE:SEGMents:COUNt?"
varSegments = myScope.ReadNumber
Debug.Print FormatNumber(varSegments, 0)