Write-only |
About Mixer/Converter Settings |
Description |
Removes the specified number of segments from the scratch mixer starting at the index position. |
VB Syntax |
conv.DeleteSegment index,count |
Variable |
(Type) - Description |
conv |
|
index |
(Long integer) Position at which to start removing segments. Valid index range is between 1 and the current segment count. Use SegmentCount Property to read the current count in the Applied Mixer. |
count |
(Long integer) Optional argument. Number of segments to remove. If unspecified, 1 segment is removed. |
Return Type |
Not Applicable |
Default |
Not Applicable |
Examples |
mxr.DeleteSegment 1,5 'Removes 5 segments beginning at the first position. |
C++ Syntax |
HRESULT DeleteSegment(long index, long count); |
Interface |
IConverter5 |