Write/Read
About Segment Sweep

Delay (Segment Sweep) Property


Description

Sets or returns the segment delay property of the sweep segment. Enable delay using the DelayOption Property of Segments collection.

 VB Syntax

seg.Delay = value

Variable

(Type) - Description

seg

A Segment (object)

value

(Double)  Delay value in seconds.

Return Type

Double

Default

0

Examples

seg.Delay = 0.001 'Write

value = seg.Delay 'Read

C++ Syntax

HRESULT get_Delay(double* delay);

HRESULT put_Delay(double delay);

Interface

ISegment3