public List<MediaWriterSpeed> Speeds { get; } Public ReadOnly Property Speeds As List(Of MediaWriterSpeed) public:property List<MediaWriterSpeed^>^ Speeds {List<MediaWriterSpeed^>^ get();}
The list of MediaWriterSpeeds for this drive.
When the MediaWriterDrive object is created, a list of supported drive speeds will also be created.
using Leadtools;using Leadtools.Codecs;using Leadtools.MediaWriter;public void DriveSpeedsExample(){try{MediaWriter writer = new MediaWriter();List<MediaWriterDrive> drives = writer.Drives;MediaWriterDrive drive = drives[1];MediaWriterDisc disc = drive.CreateDisc();disc.VolumeName = "TEST DISC";disc.SourcePathName = Path.Combine(LEAD_VARS.ImagesDir, "InputFiles");drive.LoadDisc();System.Threading.Thread.Sleep(1000);int speedIndex = -1;foreach (MediaWriterSpeed speed in drive.Speeds){if (speed.Index > speedIndex)speedIndex = speed.Index;}if (speedIndex > -1)drive.CurrentSpeedIndex = speedIndex; // fastest speeddrive.BurnDisc(disc);// wait loop for demonstration purposeswhile (drive.State != MediaWriterState.StateIdle){System.Windows.Forms.Application.DoEvents();System.Threading.Thread.Sleep(10);}}catch (Exception ex){MessageBox.Show("Test Failed: " + ex.Message);}}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.MediaWriterPublic Sub DriveSpeedsExample()TryDim writer As MediaWriter = New MediaWriter()Dim drives As List(Of MediaWriterDrive) = writer.DrivesDim drive As MediaWriterDrive = drives(1)Dim disc As MediaWriterDisc = drive.CreateDisc()disc.VolumeName = "TEST DISC"disc.SourcePathName = Path.Combine(LEAD_VARS.ImagesDir, "InputFiles")drive.LoadDisc()System.Threading.Thread.Sleep(1000)Dim speedIndex As Integer = -1For Each speed As MediaWriterSpeed In drive.SpeedsIf speed.Index > speedIndex ThenspeedIndex = speed.IndexEnd IfNext speedIf speedIndex > -1 Thendrive.CurrentSpeedIndex = speedIndex ' fastest speedEnd Ifdrive.BurnDisc(disc)' wait loop for demonstration purposesDo While drive.State <> MediaWriterState.StateIdleSystem.Windows.Forms.Application.DoEvents()System.Threading.Thread.Sleep(10)LoopCatch ex As ExceptionAssert.Fail("Test Failed: " & ex.Message)End TryEnd SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
