Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.12.17
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;}
Managed Extensions for C++ 
public: __property RasterImage get_Image();
public: __property void set_Image( 
   RasterImage value
);
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 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