ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Processing Namespace / ImGearProcessingVerifier Class / CanApplyResizeCanvas Method
Page to verify.
Page width.
Page height.




In This Topic
    CanApplyResizeCanvas Method
    In This Topic
    Returns true if ImGearProcessing.ResizeCanvas method can be applied to the specified page, with the specified dimensions, false otherwise.
    Syntax
    'Declaration
     
    Public Function CanApplyResizeCanvas( _
       ByVal page As ImGearPage, _
       ByVal width As Integer, _
       ByVal height As Integer _
    ) As Boolean
    'Usage
     
    Dim instance As ImGearProcessingVerifier
    Dim page As ImGearPage
    Dim width As Integer
    Dim height As Integer
    Dim value As Boolean
     
    value = instance.CanApplyResizeCanvas(page, width, height)
    public bool CanApplyResizeCanvas( 
       ImGearPage page,
       int width,
       int height
    )
    public: bool CanApplyResizeCanvas( 
       ImGearPage* page,
       int width,
       int height
    ) 
    public:
    bool CanApplyResizeCanvas( 
       ImGearPage^ page,
       int width,
       int height
    ) 

    Parameters

    page
    Page to verify.
    width
    Page width.
    height
    Page height.

    Return Value

    Boolean value.
    See Also