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



Name
A string value representing the GUID string name of the external processor.
Register
A boolean value indicating whether to add or remove the processor. Pass true to add it to the registered collection. Pass false to unregister the processor.
Name
A string value representing the GUID string name of the external processor.
Register
A boolean value indicating whether to add or remove the processor. Pass true to add it to the registered collection. Pass false to unregister the processor.
Registers an external 3rd-party video or audio processor filter and refreshes the referenced collection.

Syntax

Visual Basic (Declaration) 
Public Sub RegisterExternalProcessor( _
   ByVal Name As String, _
   ByVal Register As Boolean _
) 
Visual Basic (Usage)Copy Code
Dim instance As Processors
Dim Name As String
Dim Register As Boolean
 
instance.RegisterExternalProcessor(Name, Register)
C# 
public void RegisterExternalProcessor( 
   string Name,
   bool Register
)
C++/CLI 
public:
void RegisterExternalProcessor( 
   String^ Name,
   bool Register
) 

Parameters

Name
A string value representing the GUID string name of the external processor.
Register
A boolean value indicating whether to add or remove the processor. Pass true to add it to the registered collection. Pass false to unregister the processor.

Remarks

Registers an external 3rd-party video or audio processor filter and refreshes the referenced collection. After the processor is added and the collection is refreshed, the newly registered processor filter can be selected for play, capture or convert filter graphs. If the method fails, an error is raised. For more information, refer to the Error Codes.

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