Splits an edit at the given timecode. This creates a new edit to the right of the split.

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

Syntax

C#
void SplitEditAtPos(
	Object timecode,
	out string leftEditUuid,
	out string rightEditUuid
)
Visual Basic (Declaration)
Sub SplitEditAtPos ( _
	timecode As Object, _
	<OutAttribute> ByRef leftEditUuid As String, _
	<OutAttribute> ByRef rightEditUuid As String _
)
Visual C++
void SplitEditAtPos(
	Object^ timecode, 
	[OutAttribute] String^% leftEditUuid, 
	[OutAttribute] String^% rightEditUuid
)

Parameters

timecode
Type: System..::.Object
The timecode.
leftEditUuid
Type: System..::.String %
The left edit UUID.
rightEditUuid
Type: System..::.String %
The right edit UUID.

See Also