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




Gets a value that determines whether overlay image info or actual image is needed.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Info As Boolean
Visual Basic (Usage)Copy Code
Dim instance As CodecsOverlayData
Dim value As Boolean
 
value = instance.Info
C# 
public bool Info {get;}
Managed Extensions for C++ 
public: __property bool get_Info();
C++/CLI 
public:
property bool Info {
   bool get();
}

Return Value

ValueDescription
true Only the information about the overlay image is needed. You must now in fill in the InfoWidth, InfoHeight, InfoXResolution and InfoYResolution properties of this CodecsOverlayData object.
false The actual overlay image is needed. You must now load the overlay image into the Image property of this CodecsOverlayData object.

Example

For an example, refer to RasterCodecs.StartOverlay

Remarks

This property is input only.

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