ImageGear .NET v25.2 - Updated
ImageGear.Processing.Advanced Assembly / ImageGear.Processing Namespace / IImGearPixelChecker Interface / CheckPixel Method
ImageGear.Core.ImGearPixel class object representing pixel to be tested.




In This Topic
    CheckPixel Method (IImGearPixelChecker)
    In This Topic
    The method must return true if the pixel does not belong to the area (border found) and false otherwise.
    Syntax
    'Declaration
     
    Function CheckPixel( _
       ByVal pixel As ImGearPixel _
    ) As Boolean
    'Usage
     
    Dim instance As IImGearPixelChecker
    Dim pixel As ImGearPixel
    Dim value As Boolean
     
    value = instance.CheckPixel(pixel)
    bool CheckPixel( 
       ImGearPixel pixel
    )
    bool CheckPixel( 
       ImGearPixel* pixel
    ) 
    bool CheckPixel( 
       ImGearPixel^ pixel
    ) 

    Parameters

    pixel
    ImageGear.Core.ImGearPixel class object representing pixel to be tested.

    Return Value

    If the pixel does not belong to the area - true, otherwise - false.
    See Also