public string Name { get; } Public ReadOnly Property Name As String public:property String^ Name {String^ get();}
A string value representing the format's name.
Gets the format's name.
using Leadtools;using Leadtools.MediaFoundation;using LeadtoolsMediaFoundationExamples.Fixtures;public bool _result = false;public CaptureCtrlForm _form = new CaptureCtrlForm();public void TargetFormatsExample(){// reference the capture controlCaptureCtrl capturectrl = _form.CaptureCtrl;try{// set the video capture device, use your capture device name hereif (capturectrl.VideoDevices["USB"] == null)throw new Exception("No USB video device available");capturectrl.VideoDevices["USB"].Selected = true;// set the audio capture device, use your capture device name hereif (capturectrl.AudioDevices["USB"] == null)throw new Exception("No USB audio device available");capturectrl.AudioDevices["USB"].Selected = true;// select the MP4 target formatcapturectrl.TargetFormats[TargetFormatType.MP4].Selected = true;// get the current selected formatint n = capturectrl.TargetFormats.Selection;// loop through the target formats and set a different oneforeach (TargetFormat t in capturectrl.TargetFormats){// get the format propertiesstring name = t.Name;StreamFormatType sft = t.Streams;bool available = t.Available;// if we found the WMV formatif (name == "WMV"){// if it is available then select itif (available){t.Selected = true;}// exit loopbreak;}}// check it directlyTargetFormatType tft = capturectrl.TargetFormat;// set the result to what we expect_result = (tft != TargetFormatType.MP4 && n != capturectrl.TargetFormats.Selection);}catch (Exception){_result = false;}// we'll loop on the state and pump messages for this example.// but you should not need to if running from a Windows Forms application.while (capturectrl.State == CaptureState.Running)Application.DoEvents();}
Imports LeadtoolsImports Leadtools.MediaFoundationImports LeadtoolsMediaFoundationExamples.FixturesPublic _result As Boolean = FalsePublic _form As New CaptureCtrlForm()Public Sub TargetFormatsExample()' reference the capture controlDim capturectrl As CaptureCtrl = _form.CaptureCtrlTry' set the video capture device, use your capture device name hereIf capturectrl.VideoDevices("USB") Is Nothing ThenThrow New Exception("No USB video device available")End Ifcapturectrl.VideoDevices("USB").Selected = True' set the audio capture device, use your capture device name hereIf capturectrl.AudioDevices("USB") Is Nothing ThenThrow New Exception("No USB audio device available")End Ifcapturectrl.AudioDevices("USB").Selected = True' select the MP4 target formatcapturectrl.TargetFormats(TargetFormatType.MP4).Selected = True' get the current selected formatDim n As Integer = capturectrl.TargetFormats.Selection' loop through the target formats and set a different oneFor Each t As TargetFormat In capturectrl.TargetFormats' get the format propertiesDim name As String = t.NameDim sft As StreamFormatType = t.StreamsDim available As Boolean = t.Available' if we found the WMV formatIf (name = "WMV") Then' if it is available then select itIf (available) Thent.Selected = TrueEnd If' exit loopExit ForEnd IfNext' check it directlyDim tft As TargetFormatType = capturectrl.TargetFormat' set the result to what we expect_result = (tft <> TargetFormatType.MP4 AndAlso n <> capturectrl.TargetFormats.Selection)Catch generatedExceptionName As Exception_result = FalseEnd Try' we'll loop on the state and pump messages for this example.' but you should not need to if running from a Windows Forms application.While capturectrl.State = CaptureState.RunningApplication.DoEvents()End WhileEnd Sub
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
