Leadtools.ScreenCapture Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
CaptureFromExe Method
See Also 
Leadtools.ScreenCapture Namespace > ScreenCaptureEngine Class : CaptureFromExe Method



fileName
A string containing the name of the exe (or dll) from which the resource will be captured.
resourceType
Type of resource to be captured. For possible values refer to ScreenCaptureResourceType.
resourceId
Specifies the index of the resource being captured.
captureByIndex
If true, then the resourceId is the index position of the requested resource. Otherwise, resourceId is the resource id of the requested resource.
backgroundColor
Background color to be used for icons.
fileName
A string containing the name of the exe (or dll) from which the resource will be captured.
resourceType
Type of resource to be captured. For possible values refer to ScreenCaptureResourceType.
resourceId
Specifies the index of the resource being captured.
captureByIndex
If true, then the resourceId is the index position of the requested resource. Otherwise, resourceId is the resource id of the requested resource.
backgroundColor
Background color to be used for icons.
Captures an image of a resource stored in an exe or dll.

Syntax

Visual Basic (Declaration) 
Public Function CaptureFromExe( _
   ByVal fileName As String, _
   ByVal resourceType As ScreenCaptureResourceType, _
   ByVal resourceId As String, _
   ByVal captureByIndex As Boolean, _
   ByVal backgroundColor As Color _
) As RasterImage
Visual Basic (Usage)Copy Code
Dim instance As ScreenCaptureEngine
Dim fileName As String
Dim resourceType As ScreenCaptureResourceType
Dim resourceId As String
Dim captureByIndex As Boolean
Dim backgroundColor As Color
Dim value As RasterImage
 
value = instance.CaptureFromExe(fileName, resourceType, resourceId, captureByIndex, backgroundColor)
C++/CLI 
public:
RasterImage CaptureFromExe( 
   String^ fileName,
   ScreenCaptureResourceType resourceType,
   String^ resourceId,
   bool captureByIndex,
   Color backgroundColor
) 

Parameters

fileName
A string containing the name of the exe (or dll) from which the resource will be captured.
resourceType
Type of resource to be captured. For possible values refer to ScreenCaptureResourceType.
resourceId
Specifies the index of the resource being captured.
captureByIndex
If true, then the resourceId is the index position of the requested resource. Otherwise, resourceId is the resource id of the requested resource.
backgroundColor
Background color to be used for icons.

Return Value

A RasterImage that represents the captured image.

Example

For an example, refer to ScreenCaptureEngine.

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