Duplicates a track.

Namespace:  GrassValley.Mseries.Editor
Assembly:  GrassValley.Mseries.Editor (in GrassValley.Mseries.Editor.dll) Version: 1.0.0.0

Syntax

C#
public void DuplicateTrack(
	string srcTrackUuid,
	out int trackIndex,
	out string trackUuid
)
Visual Basic (Declaration)
Public Sub DuplicateTrack ( _
	srcTrackUuid As String, _
	<OutAttribute> ByRef trackIndex As Integer, _
	<OutAttribute> ByRef trackUuid As String _
)
Visual C++
public:
virtual void DuplicateTrack(
	String^ srcTrackUuid, 
	[OutAttribute] int% trackIndex, 
	[OutAttribute] String^% trackUuid
) sealed

Parameters

srcTrackUuid
Type: System..::.String
The SRC track UUID.
trackIndex
Type: System..::.Int32 %
Index of the track.
trackUuid
Type: System..::.String %
The track UUID.

Implements

ITrackEditor..::.DuplicateTrack(String, Int32%, String%)

See Also