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



graphics
Graphics object 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.
color
The color value to be XORed with colors within a region to determine the new colors for displaying the region. The color corresponding to a particular part of the region is determined as follows: Region Color Displayed = (color of pixel in region) XOR (crRgnColor)
Highlights a region by displaying a filled, color representation of the region in the given Graphics object.

Syntax

Visual Basic (Declaration) 
Public Overloads Sub FillRegion( _
   ByVal graphics As Graphics, _
   ByVal xform As RasterRegionXForm, _
   ByVal color As RasterColor _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterImage
Dim graphics As Graphics
Dim xform As RasterRegionXForm
Dim color As RasterColor
 
instance.FillRegion(graphics, xform, color)
C# 
public void FillRegion( 
   Graphics graphics,
   RasterRegionXForm xform,
   RasterColor color
)
C++/CLI 
public:
void FillRegion( 
   Graphics graphics,
   RasterRegionXForm^ xform,
   RasterColor color
) 

Parameters

graphics
Graphics object 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.
color
The color value to be XORed with colors within a region to determine the new colors for displaying the region. The color corresponding to a particular part of the region is determined as follows: Region Color Displayed = (color of pixel in region) XOR (crRgnColor)

Example

For an example, refer to FrameRegion.

Remarks

This method is particularly useful when displaying regions with black and white images. All black pixels in a region are displayed with color specified by color. and all white pixels are displayed ~(color). For example, suppose that color is light green (BGR 0x80FF40). All black pixels in the region are displayed as color. All white pixels in the region are displayed as 0xFFFFFF XOR 0x80FF40 = 0x7F00BF, which is purple.

Requirements

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

See Also