Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
Image Property
See Also 
Leadtools.Codecs Namespace > CodecsOverlayData Class : Image Property



Gets or sets the RasterImage object containing the loaded overlay image.

Syntax

Visual Basic (Declaration) 
Public Property Image As RasterImage
Visual Basic (Usage)Copy Code
Dim instance As CodecsOverlayData
Dim value As RasterImage
 
instance.Image = value
 
value = instance.Image
C# 
public RasterImage Image {get; set;}
C++/CLI 
public:
property RasterImage Image {
   RasterImage get();
   void set (RasterImage value);
}

Return Value

The RasterImage object containing the loaded overlay image. If the Info property of this CodecsOverlayData objet is false, you need to load the overlay image into this property. Otherwise ignore. You do not need to call Dispose on this image. LEADTOOLS will dispose it for you once its done overlaying it on the image.

Example

For an example, refer to RasterCodecs.StartOverlay

Remarks

This property is output.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also