ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Processing Namespace / ImGearRasterProcessingVerifier Class / CanApplyFill Method
Raster page object to verify.
The fill color. It must not be null.




In This Topic
    CanApplyFill Method
    In This Topic
    Returns true if ImGearRasterProcessing.Fill method can be applied to the specified page using provided fillColor, false otherwise.
    Syntax
    'Declaration
     
    Public Function CanApplyFill( _
       ByVal page As ImGearRasterPage, _
       ByVal fillColor As IImGearRGBQuad _
    ) As Boolean
    'Usage
     
    Dim instance As ImGearRasterProcessingVerifier
    Dim page As ImGearRasterPage
    Dim fillColor As IImGearRGBQuad
    Dim value As Boolean
     
    value = instance.CanApplyFill(page, fillColor)
    public bool CanApplyFill( 
       ImGearRasterPage page,
       IImGearRGBQuad fillColor
    )
    public: bool CanApplyFill( 
       ImGearRasterPage* page,
       IImGearRGBQuad* fillColor
    ) 
    public:
    bool CanApplyFill( 
       ImGearRasterPage^ page,
       IImGearRGBQuad^ fillColor
    ) 

    Parameters

    page
    Raster page object to verify.
    fillColor
    The fill color. It must not be null.

    Return Value

    Boolean value.
    See Also