Copies the items of the collection to a TargetDevice array, starting at a specified array index.
public void CopyTo(TargetDevice[] array,int arrayIndex)
Public Sub CopyTo( _ByVal array() As Leadtools.Multimedia.TargetDevice, _ByVal arrayIndex As Integer _)
public:void CopyTo(Leadtools.Multimedia.array<TargetDevice^>^ array,int arrayIndex)
array
The one-dimensional array that is the destination of the items to be copied from the collection. Note: The array must have zero-based indexing.
arrayIndex
The zero-based index in the destination array at which copying begins.
Exceptions
| Exception | Description |
|---|---|
| System.ArgumentNullException | The exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument. |
| System.ArgumentOutOfRangeException | The exception that is thrown when the value of an argument is outside the allowable range of values as defined by the invoked method. |
| System.ArgumentException | The exception that is thrown when one of the arguments provided to a method is not valid. |
Copies the items of the collection to a TargetDevice array, starting at a specified array index.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public ConvertCtrlForm _form = new ConvertCtrlForm();public void CopyToExample(){// reference the form convert controlConvertCtrl convertctrl = _form.ConvertCtrl;TargetDevices devices = convertctrl.TargetDevices;try{// allocate a new array for the copied video devicesTargetDevice[] copiedDevices = new TargetDevice[devices.Count];// copy themdevices.CopyTo(copiedDevices, 0);// set the result to what we expect_result = (copiedDevices.Length == devices.Count);}catch (Exception){_result = false;}}
Imports LeadtoolsImports Leadtools.MultimediaImports LeadtoolsMultimediaExamples.FixturesPublic _result As Boolean = FalsePublic _form As ConvertCtrlForm = New ConvertCtrlForm()Public Sub CopyToExample()' reference the form convert controlDim convertctrl As ConvertCtrl = _form.ConvertCtrlDim devices As TargetDevices = convertctrl.TargetDevicesTry' allocate a new array for the copied video devicesDim copiedDevices As TargetDevice() = New TargetDevice(devices.Count - 1) {}' copy themdevices.CopyTo(copiedDevices, 0)' set the result to what we expect_result = (copiedDevices.Length = devices.Count)Catch e1 As Exception_result = FalseEnd TryEnd Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
