AnimatGuiCtrls.Video.EditableVideoStream.Cut C# (CSharp) Метод

Cut() публичный Метод

Move a number of frames into a temporary stream
public Cut ( int start, int length ) : IntPtr
start int First frame to cut
length int Count of frames to cut
Результат System.IntPtr
        public IntPtr Cut(int start, int length)
        {
            IntPtr copyPointer = IntPtr.Zero;
            int result = Avi.EditStreamCut(editableStream, ref start, ref length, ref copyPointer);

            if (result != 0) {
                throw new Exception("Exception in Cut: " + result.ToString());
            }

            countFrames -= length;
            return copyPointer;
        }