ImageGear .NET v25.2 - Updated
ImageGear.Processing.Advanced Assembly / ImageGear.Processing Namespace / ImGearPixelCheckerRedEyeRGB Class / CheckPixel Method
ImageGear.Core.ImGearPixel class object that represents pixel to be tested.




In This Topic
    CheckPixel Method (ImGearPixelCheckerRedEyeRGB)
    In This Topic
    Checks if the pixel belongs to the area.
    Syntax
    'Declaration
     
    Public Function CheckPixel( _
       ByVal pixel As ImGearPixel _
    ) As Boolean
    'Usage
     
    Dim instance As ImGearPixelCheckerRedEyeRGB
    Dim pixel As ImGearPixel
    Dim value As Boolean
     
    value = instance.CheckPixel(pixel)
    public bool CheckPixel( 
       ImGearPixel pixel
    )
    public: bool CheckPixel( 
       ImGearPixel* pixel
    ) 
    public:
    bool CheckPixel( 
       ImGearPixel^ pixel
    ) 

    Parameters

    pixel
    ImageGear.Core.ImGearPixel class object that represents pixel to be tested.

    Return Value

    Boolean value.
    Remarks
    This method returns true if the pixel does not belong to the area (border found), and false otherwise.
    See Also