LEADTOOLS Multimedia (Leadtools.Multimedia assembly) Send comments on this topic. | Back to Introduction | Help Version 17.0.3.22
RemoveStream Method
See Also 
Leadtools.Multimedia Namespace > WMProfile Class : RemoveStream Method



Config
A WMStreamConfig object that is to be removed from the profile.
Config
A WMStreamConfig object that is to be removed from the profile.
Removes the specified stream from the profile.

Syntax

Visual Basic (Declaration) 
Public Sub RemoveStream( _
   ByVal Config As WMStreamConfig _
) 
Visual Basic (Usage)Copy Code
Dim instance As WMProfile
Dim Config As WMStreamConfig
 
instance.RemoveStream(Config)
C# 
public void RemoveStream( 
   WMStreamConfig Config
)
C++/CLI 
public:
void RemoveStream( 
   WMStreamConfig^ Config
) 

Parameters

Config
A WMStreamConfig object that is to be removed from the profile.

Example

Visual BasicCopy Code
Public _result As Boolean = False
      Public _form As ConvertCtrlForm = New ConvertCtrlForm()
      Public Sub RemoveStreamExample()
         Dim convertctrl As ConvertCtrl = _form.ConvertCtrl
         Dim inFile As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi")
         Dim outFile As String = Path.Combine(LEAD_VARS.MediaDir, "WMProfile_RemoveStreamExample.avi")

         Try
            ' get the video stream and remove it from the config
            Dim strm As WMStreamConfig = convertctrl.WMProfile.GetStream(0)
            convertctrl.WMProfile.RemoveStream(strm)
         Catch e1 As Exception
            _result = False
         End 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.
         Do While convertctrl.State = ConvertState.Running
            Application.DoEvents()
         Loop
      End Sub

Public NotInheritable Class LEAD_VARS
   Public Const MediaDir As String = "C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 17\Media"
End Class
C#Copy Code
public bool _result = false;
      public ConvertCtrlForm _form = new ConvertCtrlForm();
      public void RemoveStreamExample()
      {
         ConvertCtrl convertctrl = _form.ConvertCtrl;
         string inFile = Path.Combine(LEAD_VARS.MediaDir,"ConvertCtrl_Source.avi");
         string outFile = Path.Combine(LEAD_VARS.MediaDir,"WMProfile_RemoveStreamExample.avi");

         try
         {
            // get the video stream and remove it from the config
            WMStreamConfig strm = convertctrl.WMProfile.GetStream(0);
            convertctrl.WMProfile.RemoveStream(strm);
         }            
         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 (convertctrl.State == ConvertState.Running)
             Application.DoEvents();
      }

static class LEAD_VARS
{
   public const string MediaDir = @"C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 17\Media";
}

Remarks

For more information, refer to the Microsoft documentation for IWMProfile.RemoveStream.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also