Leadtools.ImageProcessing.Effects Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
ExtractMessageCommand Constructor(String,String,Point)
See Also 
Leadtools.ImageProcessing.Effects Namespace > ExtractMessageCommand Class > ExtractMessageCommand Constructor : ExtractMessageCommand Constructor(String,String,Point)



password
String that contains the password used when extracting the message from the image.
directory
String that contains the full path name of the directory in which to save the extracted file. If the extracted message is a file this parameter is used to specify the path for saving the extracted file. To save the extracted file using the original path, set this parameter to null. If the extracted message is text this parameter has no effect.
start
Point at which the message will be extracted from the image.
Initializes a new ExtractMessageCommand class object with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal password As String, _
   ByVal directory As String, _
   ByVal start As Point _
)
Visual Basic (Usage)Copy Code
Dim password As String
Dim directory As String
Dim start As Point
 
Dim instance As ExtractMessageCommand(password, directory, start)
C# 
public ExtractMessageCommand( 
   string password,
   string directory,
   Point start
)
C++/CLI 
public:
ExtractMessageCommand( 
   String^ password,
   String^ directory,
   Point start
)

Parameters

password
String that contains the password used when extracting the message from the image.
directory
String that contains the full path name of the directory in which to save the extracted file. If the extracted message is a file this parameter is used to specify the path for saving the extracted file. To save the extracted file using the original path, set this parameter to null. If the extracted message is text this parameter has no effect.
start
Point at which the message will be extracted from the image.

Example

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also