Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
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;}
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 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also