Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
FrameRegion(IntPtr,RasterRegionXForm,Int32) Method
See Also 
Leadtools Namespace > RasterImage Class > FrameRegion Method : FrameRegion(IntPtr,RasterRegionXForm,Int32) Method



hdc
Windows device context handle where the image is displayed and where the frame is to appear.
xform
RasterRegionXForm object that LEADTOOLS uses to translate between display coordinates and image coordinates.
frameIndex
Zero-index of the frame to display. Possible values are from 0 to MaxRegionFrameIndex. You can animate the region frame by cycling between these values.
Displays an outline of the image region in the given Windows device context handle.

Syntax

Visual Basic (Declaration) 
Public Overloads Sub FrameRegion( _
   ByVal hdc As IntPtr, _
   ByVal xform As RasterRegionXForm, _
   ByVal frameIndex As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterImage
Dim hdc As IntPtr
Dim xform As RasterRegionXForm
Dim frameIndex As Integer
 
instance.FrameRegion(hdc, xform, frameIndex)
C# 
public void FrameRegion( 
   IntPtr hdc,
   RasterRegionXForm xform,
   int frameIndex
)
C++/CLI 
public:
void FrameRegion( 
   IntPtr hdc,
   RasterRegionXForm^ xform,
   int frameIndex
) 

Parameters

hdc
Windows device context handle where the image is displayed and where the frame is to appear.
xform
RasterRegionXForm object that LEADTOOLS uses to translate between display coordinates and image coordinates.
frameIndex
Zero-index of the frame to display. Possible values are from 0 to MaxRegionFrameIndex. You can animate the region frame by cycling between these values.

Example

For an example, refer to FrameRegion.

Remarks

If the region includes noncontiguous shapes, each shape is outlined. The outline, itself, is inside the region.

Before calling this method, create a RasterRegionXForm object and set its values, which LEADTOOLS uses to translate between device context coordinates and image coordinates.

This method is designed to produce an animated frame, which you can implement by calling the method with a timer event that cycles through the possible frame types.

For more information, refer to Creating a Region and Working with the Existing Region.

Requirements

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

See Also