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

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

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

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

            return copyPointer;
        }