GetMutualExclusion Method

Summary
Gets the specified mutual exclusion object in the profile.
Syntax
C#
C++/CLI
public WMMutualExclusion GetMutualExclusion( 
   int MEIndex 
) 
public: 
WMMutualExclusion^ GetMutualExclusion(  
   int MEIndex 
)  

Parameters

MEIndex
Zero-based index of the WMMutualExclusion object to get.

Return Value

A WMMutualExclusion object

Remarks

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

Example
C#
using Leadtools; 
using Leadtools.Multimedia; 
using LeadtoolsMultimediaExamples.Fixtures; 
 
 
public bool _result = false; 
public ConvertCtrlForm _form = new ConvertCtrlForm(); 
public void RemoveMutualExclusionExample() 
{ 
   ConvertCtrl convertctrl = _form.ConvertCtrl; 
   string inWMProfile = Path.Combine(LEAD_VARS.MediaDir, "WMCustomProfile.xml"); 
   string outWMProfile = Path.Combine(LEAD_VARS.MediaDir, "WMCustomProfile_NoMutualExclusion.xml"); 
 
   try 
   { 
      WMProfileManager manager = new WMProfileManager(); 
 
      // load the custom profile 
      convertctrl.WMProfile = manager.LoadProfileByData(File.ReadAllText(inWMProfile)); 
 
      // remove mutual exclusion from the profile 
      WMMutualExclusion excl = convertctrl.WMProfile.GetMutualExclusion(0); 
      convertctrl.WMProfile.RemoveMutualExclusion(excl); 
 
      // save the profile 
      File.WriteAllText(outWMProfile, manager.SaveProfileEx(convertctrl.WMProfile, WMProfileType.Default)); 
      _result = true; 
 
      // dispose of the manager 
      manager.Dispose(); 
   } 
   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:\LEADTOOLS23\Media"; 
} 
Requirements

Target Platforms

See Also

Reference

WMProfile Class

WMProfile Members

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Multimedia Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.