Write-only |
About Mixer/Converter Settings |
Description |
Adds the specified number of segments to the scratch mixer at the index position. All segments are added with default settings. |
VB Syntax |
conv.AddSegment index,count |
Variable |
(Type) - Description |
conv |
|
index |
(Long integer) Position at which to add segments. Valid index range is between 1 and the current segment count +1. Using count +1 adds segments to the end of the segment table. Use SegmentCount Property to read the current count in the Applied Mixer. |
count |
(Long integer) Optional argument. Number of segments to add. If unspecified, 1 segment is added. |
Return Type |
Not Applicable |
Default |
Not Applicable |
Examples |
mxr.AddSegment 1,5 'Adds 5 segments beginning at the first position. |
C++ Syntax |
HRESULT AddSegment(long index, long count); |
Interface |
IConverter5 |